2007-05-09 11:59:23

by Shani Moideen

[permalink] [raw]
Subject: [KJ PATCH] Replacing alloc_pages(gfp,0) with alloc_page(gfp) in arch/i386/mm/pageattr.c.

Hi,

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

Signed-off-by: Shani Moideen <[email protected]>
----

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