[RFC:PATCH(002/003)] Memory add to onlined node. (ver. 2) (For ia64)

From: Yasunori Goto
Date: Thu Feb 09 2006 - 02:05:48 EST


This is for ia64 to add memory which belongs onlined node.

Signed-off-by: Yasunori Goto <y-goto@xxxxxxxxxxxxxx>


Index: node_simple3/arch/ia64/mm/init.c
===================================================================
--- node_simple3.orig/arch/ia64/mm/init.c 2006-02-08 16:54:56.204707334 +0900
+++ node_simple3/arch/ia64/mm/init.c 2006-02-08 17:21:57.082617165 +0900
@@ -20,6 +20,7 @@
#include <linux/swap.h>
#include <linux/proc_fs.h>
#include <linux/bitops.h>
+#include <linux/acpi.h>

#include <asm/a.out.h>
#include <asm/dma.h>
@@ -652,9 +653,15 @@ int add_memory(u64 start, u64 size)
struct zone *zone;
unsigned long start_pfn = start >> PAGE_SHIFT;
unsigned long nr_pages = size >> PAGE_SHIFT;
- int ret;
+ int ret, node;

- pgdat = NODE_DATA(0);
+ node = acpi_paddr_to_node(start, size);
+
+ if (node >= 0 && node_online(node))
+ pgdat = NODE_DATA(node);
+ else
+ /* New node's memory will be added to Node 0 temporarll. */
+ pgdat = NODE_DATA(0);

zone = pgdat->node_zones + ZONE_NORMAL;
ret = __add_pages(zone, start_pfn, nr_pages);

--
Yasunori Goto


-
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/