From: Kirill A. Shutemov Date: Thu, 14 Nov 2013 22:31:40 +0000 (-0800) Subject: score: handle pgtable_page_ctor() fail X-Git-Tag: v4.0~2934^2~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=96da3a62ea1fef2d9dfa8eff97706603918d5f4d;p=platform%2Fkernel%2Flinux-amlogic.git score: handle pgtable_page_ctor() fail Signed-off-by: Kirill A. Shutemov Cc: Chen Liqin Acked-by: Lennox Wu Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/score/include/asm/pgalloc.h b/arch/score/include/asm/pgalloc.h index 716b3fd..2e06765 100644 --- a/arch/score/include/asm/pgalloc.h +++ b/arch/score/include/asm/pgalloc.h @@ -54,9 +54,12 @@ static inline struct page *pte_alloc_one(struct mm_struct *mm, struct page *pte; pte = alloc_pages(GFP_KERNEL | __GFP_REPEAT, PTE_ORDER); - if (pte) { - clear_highpage(pte); - pgtable_page_ctor(pte); + if (!pte) + return NULL; + clear_highpage(pte); + if (!pgtable_page_ctor(pte)) { + __free_page(pte); + return NULL; } return pte; }