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:
647f884
)
unicore32: handle pgtable_page_ctor() fail
author
Kirill A. Shutemov
<
[email protected]
>
Thu, 14 Nov 2013 22:31:46 +0000
(14:31 -0800)
committer
Linus Torvalds
<
[email protected]
>
Fri, 15 Nov 2013 00:32:19 +0000
(09:32 +0900)
Signed-off-by: Kirill A. Shutemov <
[email protected]
>
Cc: Guan Xuetao <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/unicore32/include/asm/pgalloc.h
patch
|
blob
|
history
diff --git
a/arch/unicore32/include/asm/pgalloc.h
b/arch/unicore32/include/asm/pgalloc.h
index 0213e373a895ead3c412b24bf5b5f9b5d6a9aab2..2e02d1356fdfffd531305693399c378df7f1735d 100644
(file)
--- a/
arch/unicore32/include/asm/pgalloc.h
+++ b/
arch/unicore32/include/asm/pgalloc.h
@@
-51,12
+51,14
@@
pte_alloc_one(struct mm_struct *mm, unsigned long addr)
struct page *pte;
pte = alloc_pages(PGALLOC_GFP, 0);
- if (pte) {
- if (!PageHighMem(pte)) {
- void *page = page_address(pte);
- clean_dcache_area(page, PTRS_PER_PTE * sizeof(pte_t));
- }
- pgtable_page_ctor(pte);
+ if (!pte)
+ return NULL;
+ if (!PageHighMem(pte)) {
+ void *page = page_address(pte);
+ clean_dcache_area(page, PTRS_PER_PTE * sizeof(pte_t));
+ }
+ if (!pgtable_page_ctor(pte)) {
+ __free_page(pte);
}
return pte;