The patch titled NUMA hotplug emulator: abstract cpu register functions has been removed from the -mm tree. Its filename was numa-hotplug-emulator-abstract-cpu-register-functions.patch This patch was dropped because an updated version will be merged The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: NUMA hotplug emulator: abstract cpu register functions From: Shaohui Zheng <shaohui.zheng@xxxxxxxxx> Abstract cpu register functions, provide a more flexible interface register_cpu_node, the new interface provides convenience to add cpu to a specified node, we can use it to add a cpu to a fake node. Signed-off-by: Paul Mundt <lethal@xxxxxxxxxxxx> Signed-off-by: Shaohui Zheng <shaohui.zheng@xxxxxxxxx> Reviewed-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: David Rientjes <rientjes@xxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Cc: Greg KH <gregkh@xxxxxxx> Cc: Len Brown <len.brown@xxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Cc: Dave Hansen <dave@xxxxxxxxxxxxxxxxxx> Cc: Eric B Munson <emunson@xxxxxxxxx> Cc: Tejun Heo <tj@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/include/asm/cpu.h | 1 + arch/x86/kernel/topology.c | 9 +++++++++ drivers/base/cpu.c | 9 +++++---- include/linux/cpu.h | 8 +++++++- 4 files changed, 22 insertions(+), 5 deletions(-) diff -puN arch/x86/include/asm/cpu.h~numa-hotplug-emulator-abstract-cpu-register-functions arch/x86/include/asm/cpu.h --- a/arch/x86/include/asm/cpu.h~numa-hotplug-emulator-abstract-cpu-register-functions +++ a/arch/x86/include/asm/cpu.h @@ -27,6 +27,7 @@ struct x86_cpu { #ifdef CONFIG_HOTPLUG_CPU extern int arch_register_cpu(int num); +extern int arch_register_cpu_node(int num, int nid); extern void arch_unregister_cpu(int); #endif diff -puN arch/x86/kernel/topology.c~numa-hotplug-emulator-abstract-cpu-register-functions arch/x86/kernel/topology.c --- a/arch/x86/kernel/topology.c~numa-hotplug-emulator-abstract-cpu-register-functions +++ a/arch/x86/kernel/topology.c @@ -52,6 +52,15 @@ int __ref arch_register_cpu(int num) } EXPORT_SYMBOL(arch_register_cpu); +int __ref arch_register_cpu_node(int num, int nid) +{ + if (num) + per_cpu(cpu_devices, num).cpu.hotpluggable = 1; + + return register_cpu_node(&per_cpu(cpu_devices, num).cpu, num, nid); +} +EXPORT_SYMBOL(arch_register_cpu_node); + void arch_unregister_cpu(int num) { unregister_cpu(&per_cpu(cpu_devices, num).cpu); diff -puN drivers/base/cpu.c~numa-hotplug-emulator-abstract-cpu-register-functions drivers/base/cpu.c --- a/drivers/base/cpu.c~numa-hotplug-emulator-abstract-cpu-register-functions +++ a/drivers/base/cpu.c @@ -208,17 +208,18 @@ static ssize_t print_cpus_offline(struct static SYSDEV_CLASS_ATTR(offline, 0444, print_cpus_offline, NULL); /* - * register_cpu - Setup a sysfs device for a CPU. + * register_cpu_node - Setup a sysfs device for a CPU. * @cpu - cpu->hotpluggable field set to 1 will generate a control file in * sysfs for this CPU. * @num - CPU number to use when creating the device. + * @nid - Node ID to use, if any. * * Initialize and register the CPU device. */ -int __cpuinit register_cpu(struct cpu *cpu, int num) +int __cpuinit register_cpu_node(struct cpu *cpu, int num, int nid) { int error; - cpu->node_id = cpu_to_node(num); + cpu->node_id = nid; cpu->sysdev.id = num; cpu->sysdev.cls = &cpu_sysdev_class; @@ -229,7 +230,7 @@ int __cpuinit register_cpu(struct cpu *c if (!error) per_cpu(cpu_sys_devices, num) = &cpu->sysdev; if (!error) - register_cpu_under_node(num, cpu_to_node(num)); + register_cpu_under_node(num, nid); #ifdef CONFIG_KEXEC if (!error) diff -puN include/linux/cpu.h~numa-hotplug-emulator-abstract-cpu-register-functions include/linux/cpu.h --- a/include/linux/cpu.h~numa-hotplug-emulator-abstract-cpu-register-functions +++ a/include/linux/cpu.h @@ -25,7 +25,13 @@ struct cpu { struct sys_device sysdev; }; -extern int register_cpu(struct cpu *cpu, int num); +extern int register_cpu_node(struct cpu *cpu, int num, int nid); + +static inline int register_cpu(struct cpu *cpu, int num) +{ + return register_cpu_node(cpu, num, cpu_to_node(num)); +} + extern struct sys_device *get_cpu_sysdev(unsigned cpu); extern int cpu_add_sysdev_attr(struct sysdev_attribute *attr); _ Patches currently in -mm which might be from shaohui.zheng@xxxxxxxxx are numa-hotplug-emulator-support-cpu-probe-release-in-x86_64.patch numa-hotplug-emulator-fake-cpu-socket-with-logical-cpu-on-x86.patch numa-hotplug-emulator-fake-cpu-socket-with-logical-cpu-on-x86-fix.patch numa-hotplug-emulator-implement-per-node-add_memory-debugfs-interface.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