diff options
author | Kirill A. Shutemov <kirill.shutemov@linux.intel.com> | 2013-11-14 17:31:36 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-14 19:32:18 -0500 |
commit | 3b5b51c1a7bd148e1d7721874849435d76728375 (patch) | |
tree | d6810a3ceea297a3dd18328f43a0b8de96f62107 /arch/mips/include/asm | |
parent | 855a30531806388cd63940cb03a18d6546404805 (diff) |
mips: handle pgtable_page_ctor() fail
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/mips/include/asm')
-rw-r--r-- | arch/mips/include/asm/pgalloc.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/arch/mips/include/asm/pgalloc.h b/arch/mips/include/asm/pgalloc.h index 881d18b4e298..b336037e8768 100644 --- a/arch/mips/include/asm/pgalloc.h +++ b/arch/mips/include/asm/pgalloc.h | |||
@@ -80,9 +80,12 @@ static inline struct page *pte_alloc_one(struct mm_struct *mm, | |||
80 | struct page *pte; | 80 | struct page *pte; |
81 | 81 | ||
82 | pte = alloc_pages(GFP_KERNEL | __GFP_REPEAT, PTE_ORDER); | 82 | pte = alloc_pages(GFP_KERNEL | __GFP_REPEAT, PTE_ORDER); |
83 | if (pte) { | 83 | if (!pte) |
84 | clear_highpage(pte); | 84 | return NULL; |
85 | pgtable_page_ctor(pte); | 85 | clear_highpage(pte); |
86 | if (!pgtable_page_ctor(pte)) { | ||
87 | __free_page(pte); | ||
88 | return NULL; | ||
86 | } | 89 | } |
87 | return pte; | 90 | return pte; |
88 | } | 91 | } |