diff options
| author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2007-01-09 04:18:44 -0500 |
|---|---|---|
| committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2007-01-09 04:18:44 -0500 |
| commit | 6721f77810dfcb7cbf8e97be6fa43fe2740dd0aa (patch) | |
| tree | f3a1a2c24fe732cbbf923976575510a3d06cf0a9 | |
| parent | 6faf4444f2445b068a4f75a86ae81b104c0eed2c (diff) | |
[S390] Fix cpu hotplug (missing 'online' attribute).
72486f1f8f0a2bc828b9d30cf4690cf2dd6807fc inverts the logic if an
'online' attribute in /sys/devices/system/cpu/cpuX should appear.
So we end up with no hotpluggable cpus at all...
Set the hotpluggable value to one to make sure the online
attribute appears again.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
| -rw-r--r-- | arch/s390/kernel/smp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c index 19090f7d4f51..c0cd255fddbd 100644 --- a/arch/s390/kernel/smp.c +++ b/arch/s390/kernel/smp.c | |||
| @@ -794,7 +794,10 @@ static int __init topology_init(void) | |||
| 794 | int ret; | 794 | int ret; |
| 795 | 795 | ||
| 796 | for_each_possible_cpu(cpu) { | 796 | for_each_possible_cpu(cpu) { |
| 797 | ret = register_cpu(&per_cpu(cpu_devices, cpu), cpu); | 797 | struct cpu *c = &per_cpu(cpu_devices, cpu); |
| 798 | |||
| 799 | c->hotpluggable = 1; | ||
| 800 | ret = register_cpu(c, cpu); | ||
| 798 | if (ret) | 801 | if (ret) |
| 799 | printk(KERN_WARNING "topology_init: register_cpu %d " | 802 | printk(KERN_WARNING "topology_init: register_cpu %d " |
| 800 | "failed (%d)\n", cpu, ret); | 803 | "failed (%d)\n", cpu, ret); |
