The patch titled i386: clean up topology.c has been removed from the -mm tree. Its filename is i386-clean-up-topologyc.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: i386: clean up topology.c From: Magnus Damm <magnus@xxxxxxxxxxxxx> There is no need to duplicate the topology_init() function. Signed-off-by: Magnus Damm <magnus@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/topology.c | 21 +++------------------ 1 files changed, 3 insertions(+), 18 deletions(-) diff -puN arch/i386/kernel/topology.c~i386-clean-up-topologyc arch/i386/kernel/topology.c --- a/arch/i386/kernel/topology.c~i386-clean-up-topologyc +++ a/arch/i386/kernel/topology.c @@ -28,6 +28,7 @@ #include <linux/init.h> #include <linux/smp.h> #include <linux/nodemask.h> +#include <linux/mmzone.h> #include <asm/cpu.h> static struct i386_cpu cpu_devices[NR_CPUS]; @@ -55,34 +56,18 @@ EXPORT_SYMBOL(arch_register_cpu); EXPORT_SYMBOL(arch_unregister_cpu); #endif /*CONFIG_HOTPLUG_CPU*/ - - -#ifdef CONFIG_NUMA -#include <linux/mmzone.h> - static int __init topology_init(void) { int i; +#ifdef CONFIG_NUMA for_each_online_node(i) register_one_node(i); +#endif /* CONFIG_NUMA */ for_each_present_cpu(i) arch_register_cpu(i); return 0; } -#else /* !CONFIG_NUMA */ - -static int __init topology_init(void) -{ - int i; - - for_each_present_cpu(i) - arch_register_cpu(i); - return 0; -} - -#endif /* CONFIG_NUMA */ - subsys_initcall(topology_init); _ Patches currently in -mm which might be from magnus@xxxxxxxxxxxxx are git-kbuild.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