--- zzzz-none-000/linux-3.10.107/arch/mn10300/mm/pgtable.c 2017-06-27 09:49:32.000000000 +0000 +++ scorpion-7490-727/linux-3.10.107/arch/mn10300/mm/pgtable.c 2021-02-04 17:41:59.000000000 +0000 @@ -78,8 +78,13 @@ #else pte = alloc_pages(GFP_KERNEL|__GFP_REPEAT, 0); #endif - if (pte) - clear_highpage(pte); + if (!pte) + return NULL; + clear_highpage(pte); + if (!pgtable_page_ctor(pte)) { + __free_page(pte); + return NULL; + } return pte; }