plain text document attachment (critical_mempools)
Fixup existing mempool users to use the new mempool API, part 1.
Fix the sole "indirect" user of mempool_alloc_pages to be aware of its new
'node_id' argument.
Signed-off-by: Matthew Dobson <[email protected]>
highmem.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: linux-2.6.16-rc1+critical_mempools/mm/highmem.c
===================================================================
--- linux-2.6.16-rc1+critical_mempools.orig/mm/highmem.c
+++ linux-2.6.16-rc1+critical_mempools/mm/highmem.c
@@ -30,9 +30,9 @@
static mempool_t *page_pool, *isa_page_pool;
-static void *mempool_alloc_pages_isa(gfp_t gfp_mask, void *data)
+static void *mempool_alloc_pages_isa(gfp_t gfp_mask, int node_id, void *data)
{
- return mempool_alloc_pages(gfp_mask | GFP_DMA, data);
+ return mempool_alloc_pages(gfp_mask | GFP_DMA, node_id, data);
}
--