The patch titled register-sysfs-file-for-hotpluged-new-node fix has been removed from the -mm tree. Its filename is register-sysfs-file-for-hotpluged-new-node-fix.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: register-sysfs-file-for-hotpluged-new-node fix From: Yasunori Goto <y-goto@xxxxxxxxxxxxxx> Creating sysfs file for node is consolidated as generic code by creating registrer_one_node() and node_devices[]. But, ia64's boot time code remains old sysfs_nodes structure as an arch dependent code. This is to remove it. This patch is for 2.6.17-rc4-mm1 with + register-sysfs-file-for-hotpluged-new-node.patch I tested this on Tiger4 box with my multi nodes emulation. Signed-off-by: Yasunori Goto <y-goto@xxxxxxxxxxxxxx> Cc: Keiichiro Tokunaga <tokuanga.keiich@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/ia64/kernel/topology.c | 15 +++------------ 1 files changed, 3 insertions(+), 12 deletions(-) diff -puN arch/ia64/kernel/topology.c~register-sysfs-file-for-hotpluged-new-node-fix arch/ia64/kernel/topology.c --- 25/arch/ia64/kernel/topology.c~register-sysfs-file-for-hotpluged-new-node-fix Fri May 19 13:35:26 2006 +++ 25-akpm/arch/ia64/kernel/topology.c Fri May 19 13:35:26 2006 @@ -26,9 +26,6 @@ #include <asm/numa.h> #include <asm/cpu.h> -#ifdef CONFIG_NUMA -static struct node *sysfs_nodes; -#endif static struct ia64_cpu *sysfs_cpus; int arch_register_cpu(int num) @@ -36,7 +33,7 @@ int arch_register_cpu(int num) struct node *parent = NULL; #ifdef CONFIG_NUMA - parent = &sysfs_nodes[cpu_to_node(num)]; + parent = &node_devices[cpu_to_node(num)]; #endif /* CONFIG_NUMA */ #if defined (CONFIG_ACPI) && defined (CONFIG_HOTPLUG_CPU) @@ -59,7 +56,7 @@ void arch_unregister_cpu(int num) #ifdef CONFIG_NUMA int node = cpu_to_node(num); - parent = &sysfs_nodes[node]; + parent = &node_devices[node]; #endif /* CONFIG_NUMA */ return unregister_cpu(&sysfs_cpus[num].cpu, parent); @@ -74,17 +71,11 @@ static int __init topology_init(void) int i, err = 0; #ifdef CONFIG_NUMA - sysfs_nodes = kzalloc(sizeof(struct node) * MAX_NUMNODES, GFP_KERNEL); - if (!sysfs_nodes) { - err = -ENOMEM; - goto out; - } - /* * MCD - Do we want to register all ONLINE nodes, or all POSSIBLE nodes? */ for_each_online_node(i) { - if ((err = register_node(&sysfs_nodes[i], i, 0))) + if ((err = register_one_node(i))) goto out; } #endif _ Patches currently in -mm which might be from y-goto@xxxxxxxxxxxxxx are spanned_pages-is-not-updated-at-a-case-of-memory-hot-add.patch catch-notification-of-memory-add-event-of-acpi-via-container-driver-register-start-func-for-memory-device.patch catch-notification-of-memory-add-event-of-acpi-via-container-driveravoid-redundant-call-add_memory.patch wait_table-and-zonelist-initializing-for-memory-hotadd-change-name-of-wait_table_size.patch wait_table-and-zonelist-initializing-for-memory-hotadd-change-to-meminit-for-build_zonelist.patch wait_table-and-zonelist-initializing-for-memory-hotaddadd-return-code-for-init_current_empty_zone.patch wait_table-and-zonelist-initializing-for-memory-hotadd-wait_table-initialization.patch wait_table-and-zonelist-initializing-for-memory-hotadd-update-zonelists.patch unify-pxm_to_node-and-node_to_pxm.patch pgdat-allocation-for-new-node-add-specify-node-id.patch pgdat-allocation-for-new-node-add-get-node-id-by-acpi.patch pgdat-allocation-for-new-node-add-generic-alloc-node_data.patch pgdat-allocation-for-new-node-add-refresh-node_data.patch pgdat-allocation-for-new-node-add-export-kswapd-start-func.patch pgdat-allocation-for-new-node-add-call-pgdat-allocation.patch fix-compile-error-undefined-reference-for-sparc64.patch register-sysfs-file-for-hotpluged-new-node.patch pgdat-allocation-and-update-for-ia64-of-memory-hotplughold-pgdat-address-at-system-running.patch pgdat-allocation-and-update-for-ia64-of-memory-hotplug-update-pgdat-address-array.patch pgdat-allocation-and-update-for-ia64-of-memory-hotplugallocate-pgdat-and-per-node-data.patch sparsemem-record-nid-during-memory-present.patch node-hotplug-register-cpu-remove-node-struct.patch node-hotplug-fixes-callres-of-register_cpu.patch node-hotplug-register_node-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html