From: Kirill A. Shutemov Date: Thu, 14 Nov 2013 22:31:41 +0000 (-0800) Subject: sh: handle pgtable_page_ctor() fail X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=478cf8ca013f9e33be978dee4d0a15906e5a030a;p=GitHub%2FLineageOS%2FG12%2Fandroid_kernel_amlogic_linux-4.9.git sh: handle pgtable_page_ctor() fail Signed-off-by: Kirill A. Shutemov Cc: Paul Mundt Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/sh/include/asm/pgalloc.h b/arch/sh/include/asm/pgalloc.h index 8c00785c60d5..a33673b3687d 100644 --- a/arch/sh/include/asm/pgalloc.h +++ b/arch/sh/include/asm/pgalloc.h @@ -47,7 +47,10 @@ static inline pgtable_t pte_alloc_one(struct mm_struct *mm, if (!pg) return NULL; page = virt_to_page(pg); - pgtable_page_ctor(page); + if (!pgtable_page_ctor(page)) { + quicklist_free(QUICK_PT, NULL, pg); + return NULL; + } return page; }