Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45353
b: refs/heads/master
c: 6721f77
h: refs/heads/master
i:
  45351: 95177be
v: v3
  • Loading branch information
Heiko Carstens authored and Martin Schwidefsky committed Jan 9, 2007
1 parent cdb49e1 commit ce6012a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6faf4444f2445b068a4f75a86ae81b104c0eed2c
refs/heads/master: 6721f77810dfcb7cbf8e97be6fa43fe2740dd0aa
5 changes: 4 additions & 1 deletion trunk/arch/s390/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,10 @@ static int __init topology_init(void)
int ret;

for_each_possible_cpu(cpu) {
ret = register_cpu(&per_cpu(cpu_devices, cpu), cpu);
struct cpu *c = &per_cpu(cpu_devices, cpu);

c->hotpluggable = 1;
ret = register_cpu(c, cpu);
if (ret)
printk(KERN_WARNING "topology_init: register_cpu %d "
"failed (%d)\n", cpu, ret);
Expand Down

0 comments on commit ce6012a

Please sign in to comment.