From: Kirill A. Shutemov Date: Thu, 14 Nov 2013 22:31:31 +0000 (-0800) Subject: hexagon: handle pgtable_page_ctor() fail X-Git-Tag: v3.13-rc1~84^2~43 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5de1423d8901bed12f1b96acef27ac133592eaeb;p=people%2Fiwj%2Flinux.git hexagon: handle pgtable_page_ctor() fail Signed-off-by: Kirill A. Shutemov Cc: Richard Kuo Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/hexagon/include/asm/pgalloc.h b/arch/hexagon/include/asm/pgalloc.h index 679bf6d66487..4c9d382d7798 100644 --- a/arch/hexagon/include/asm/pgalloc.h +++ b/arch/hexagon/include/asm/pgalloc.h @@ -65,10 +65,12 @@ static inline struct page *pte_alloc_one(struct mm_struct *mm, struct page *pte; pte = alloc_page(GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO); - - if (pte) - pgtable_page_ctor(pte); - + if (!pte) + return NULL; + if (!pgtable_page_ctor(pte)) { + __free_page(pte); + return NULL; + } return pte; }