]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
powerpc: import a gfp_t fix to arch/powerpc/mm/pgtable_32.c
authorPaul Mackerras <paulus@samba.org>
Sat, 29 Oct 2005 12:10:38 +0000 (22:10 +1000)
committerPaul Mackerras <paulus@samba.org>
Sat, 29 Oct 2005 12:10:38 +0000 (22:10 +1000)
This applies the same fix as Al Viro recently made to
arch/ppc/mm/pgtable.c.

Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/mm/pgtable_32.c

index 5792e533916f29b1d16cea442d3c6e4ecb323f54..f54fb9d3927a995116a985c5417b0029fa2575a7 100644 (file)
@@ -114,9 +114,9 @@ struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address)
        struct page *ptepage;
 
 #ifdef CONFIG_HIGHPTE
-       int flags = GFP_KERNEL | __GFP_HIGHMEM | __GFP_REPEAT;
+       gfp_t flags = GFP_KERNEL | __GFP_HIGHMEM | __GFP_REPEAT;
 #else
-       int flags = GFP_KERNEL | __GFP_REPEAT;
+       gfp_t flags = GFP_KERNEL | __GFP_REPEAT;
 #endif
 
        ptepage = alloc_pages(flags, 0);