The patch titled
fix variable use in AVR32 pte_alloc_one
has been removed from the -mm tree. Its filename was
config_highpte-vs-sub-page-page-tables-avr32-fix.patch
This patch was dropped because an updated version will be merged
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: fix variable use in AVR32 pte_alloc_one
From: Ben Nizette <[EMAIL PROTECTED]>
Some parts of this function use 'page', some 'pte'. As such, an AVR32 -mm
build fails with an undefined reference to 'page'.
Signed-off-by: Ben Nizette <[EMAIL PROTECTED]>
Cc: Martin Schwidefsky <[EMAIL PROTECTED]>
Cc: Haavard Skinnemoen <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
include/asm-avr32/pgalloc.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff -puN
include/asm-avr32/pgalloc.h~config_highpte-vs-sub-page-page-tables-avr32-fix
include/asm-avr32/pgalloc.h
---
a/include/asm-avr32/pgalloc.h~config_highpte-vs-sub-page-page-tables-avr32-fix
+++ a/include/asm-avr32/pgalloc.h
@@ -52,9 +52,9 @@ static inline struct page *pte_alloc_one
struct page *pte;
pte = alloc_page(GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO);
- if (!page)
+ if (!pte)
return NULL;
- pgtable_page_ctor(page);
+ pgtable_page_ctor(pte);
return pte;
}
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
config_highpte-vs-sub-page-page-tables-avr32-fix.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html