Skip to content

Commit

Permalink
[PATCH] i386: introduce the mechanism of disabling cpu hotplug control
Browse files Browse the repository at this point in the history
Add 'enable_cpu_hotplug' flag and when cleared, the hotplug control file
("online") will not be added under /sys/devices/system/cpu/cpuX/

Next patch doing PCI quirks will use this.

Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Cc: Andi Kleen <ak@suse.de>
Cc: "Li, Shaohua" <shaohua.li@intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
  • Loading branch information
Siddha, Suresh B authored and Andi Kleen committed Dec 7, 2006
1 parent 274e1bb commit fd6d7d2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion arch/i386/kernel/topology.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,18 @@ int arch_register_cpu(int num)
* restrictions and assumptions in kernel. This basically
* doesnt add a control file, one cannot attempt to offline
* BSP.
*
* Also certain PCI quirks require not to enable hotplug control
* for all CPU's.
*/
if (!num)
if (!num || !enable_cpu_hotplug)
cpu_devices[num].cpu.no_control = 1;

return register_cpu(&cpu_devices[num].cpu, num);
}

#ifdef CONFIG_HOTPLUG_CPU
int enable_cpu_hotplug = 1;

void arch_unregister_cpu(int num) {
return unregister_cpu(&cpu_devices[num].cpu);
Expand Down
3 changes: 3 additions & 0 deletions include/asm-i386/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ struct i386_cpu {
extern int arch_register_cpu(int num);
#ifdef CONFIG_HOTPLUG_CPU
extern void arch_unregister_cpu(int);
extern int enable_cpu_hotplug;
#else
#define enable_cpu_hotplug 0
#endif

DECLARE_PER_CPU(int, cpu_state);
Expand Down

0 comments on commit fd6d7d2

Please sign in to comment.