[KJ PATCH] Replacing alloc_pages(gfp,0) with alloc_page(gfp) inarch/i386/mm/pageattr.c.

From: Shani Moideen
Date: Wed May 09 2007 - 07:59:24 EST


Hi,

Replacing alloc_pages(gfp,0) with alloc_page(gfp) in
arch/i386/mm/pageattr.c.

Signed-off-by: Shani Moideen <shani.moideen@xxxxxxxxx>
----

diff --git a/arch/i386/mm/pageattr.c b/arch/i386/mm/pageattr.c
index 412ebbd..12f7f14 100644
--- a/arch/i386/mm/pageattr.c
+++ b/arch/i386/mm/pageattr.c
@@ -45,7 +45,7 @@ static struct page *split_large_page(unsigned long address, pgprot_t prot,
pte_t *pbase;

spin_unlock_irq(&cpa_lock);
- base = alloc_pages(GFP_KERNEL, 0);
+ base = alloc_page(GFP_KERNEL);
spin_lock_irq(&cpa_lock);
if (!base)
return NULL;


--
Shani
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/