diff options
author | Kirill A. Shutemov <kirill.shutemov@linux.intel.com> | 2013-11-14 17:31:35 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-14 19:32:18 -0500 |
commit | 855a30531806388cd63940cb03a18d6546404805 (patch) | |
tree | 688560a14e5076b9737dbb3b47fc59ed40b6d7f9 | |
parent | f84c914b986ed2ec4ffaa5672b423b1f6b65519d (diff) |
metag: handle pgtable_page_ctor() fail
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | arch/metag/include/asm/pgalloc.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/metag/include/asm/pgalloc.h b/arch/metag/include/asm/pgalloc.h index 275d9285141c..3104df0a4822 100644 --- a/arch/metag/include/asm/pgalloc.h +++ b/arch/metag/include/asm/pgalloc.h | |||
@@ -52,8 +52,12 @@ static inline pgtable_t pte_alloc_one(struct mm_struct *mm, | |||
52 | { | 52 | { |
53 | struct page *pte; | 53 | struct page *pte; |
54 | pte = alloc_pages(GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO, 0); | 54 | pte = alloc_pages(GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO, 0); |
55 | if (pte) | 55 | if (!pte) |
56 | pgtable_page_ctor(pte); | 56 | return NULL; |
57 | if (!pgtable_page_ctor(pte)) { | ||
58 | __free_page(pte); | ||
59 | return NULL; | ||
60 | } | ||
57 | return pte; | 61 | return pte; |
58 | } | 62 | } |
59 | 63 | ||