projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b5b51c
)
parisc: handle pgtable_page_ctor() fail
author
Kirill A. Shutemov
<
[email protected]
>
Thu, 14 Nov 2013 22:31:37 +0000
(14:31 -0800)
committer
Linus Torvalds
<
[email protected]
>
Fri, 15 Nov 2013 00:32:18 +0000
(09:32 +0900)
Signed-off-by: Kirill A. Shutemov <
[email protected]
>
Cc: "James E.J. Bottomley" <
[email protected]
>
Cc: Helge Deller <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/parisc/include/asm/pgalloc.h
patch
|
blob
|
history
diff --git
a/arch/parisc/include/asm/pgalloc.h
b/arch/parisc/include/asm/pgalloc.h
index fc987a1c12a88828d66c9c322da3d0a514fd5143..f213f5b4c4239b961e260c659447886a8646f0bd 100644
(file)
--- a/
arch/parisc/include/asm/pgalloc.h
+++ b/
arch/parisc/include/asm/pgalloc.h
@@
-121,8
+121,12
@@
static inline pgtable_t
pte_alloc_one(struct mm_struct *mm, unsigned long address)
{
struct page *page = alloc_page(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO);
- if (page)
- pgtable_page_ctor(page);
+ if (!page)
+ return NULL;
+ if (!pgtable_page_ctor(page)) {
+ __free_page(page);
+ return NULL;
+ }
return page;
}