From: Kirill A. Shutemov Date: Thu, 14 Nov 2013 22:31:32 +0000 (-0800) Subject: ia64: handle pgtable_page_ctor() fail X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ca973d86d4c5b70c32e7b91ce08f3e8e061e2535;p=linux-beck.git ia64: handle pgtable_page_ctor() fail Signed-off-by: Kirill A. Shutemov Cc: Tony Luck Cc: Fenghua Yu Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/ia64/include/asm/pgalloc.h b/arch/ia64/include/asm/pgalloc.h index 96a8d927db28..5767cdfc08db 100644 --- a/arch/ia64/include/asm/pgalloc.h +++ b/arch/ia64/include/asm/pgalloc.h @@ -91,7 +91,10 @@ static inline pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long addr) if (!pg) return NULL; page = virt_to_page(pg); - pgtable_page_ctor(page); + if (!pgtable_page_ctor(page)) { + quicklist_free(0, NULL, pg); + return NULL; + } return page; }