forked from Minki/linux
MIPS: CPU#0 is not hotpluggable
Now CPU#0 is not hotpluggable on MIPS, so prevent to create /sys/devices /system/cpu/cpu0/online which confuses some user-space tools. Cc: stable@vger.kernel.org Signed-off-by: Huacai Chen <chenhc@lemote.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
This commit is contained in:
parent
d8727385f4
commit
9cce844abf
@ -20,7 +20,7 @@ static int __init topology_init(void)
|
|||||||
for_each_present_cpu(i) {
|
for_each_present_cpu(i) {
|
||||||
struct cpu *c = &per_cpu(cpu_devices, i);
|
struct cpu *c = &per_cpu(cpu_devices, i);
|
||||||
|
|
||||||
c->hotpluggable = 1;
|
c->hotpluggable = !!i;
|
||||||
ret = register_cpu(c, i);
|
ret = register_cpu(c, i);
|
||||||
if (ret)
|
if (ret)
|
||||||
printk(KERN_WARNING "topology_init: register_cpu %d "
|
printk(KERN_WARNING "topology_init: register_cpu %d "
|
||||||
|
Loading…
Reference in New Issue
Block a user