diff options
Diffstat (limited to 'arch/powerpc/kernel/smp.c')
-rw-r--r-- | arch/powerpc/kernel/smp.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/smp.c b/arch/powerpc/kernel/smp.c index df3739713edd..d7f8cc18ae05 100644 --- a/arch/powerpc/kernel/smp.c +++ b/arch/powerpc/kernel/smp.c | |||
@@ -305,7 +305,7 @@ void __devinit smp_prepare_boot_cpu(void) | |||
305 | 305 | ||
306 | #ifdef CONFIG_HOTPLUG_CPU | 306 | #ifdef CONFIG_HOTPLUG_CPU |
307 | /* State of each CPU during hotplug phases */ | 307 | /* State of each CPU during hotplug phases */ |
308 | DEFINE_PER_CPU(int, cpu_state) = { 0 }; | 308 | static DEFINE_PER_CPU(int, cpu_state) = { 0 }; |
309 | 309 | ||
310 | int generic_cpu_disable(void) | 310 | int generic_cpu_disable(void) |
311 | { | 311 | { |
@@ -348,6 +348,11 @@ void generic_mach_cpu_die(void) | |||
348 | while (__get_cpu_var(cpu_state) != CPU_UP_PREPARE) | 348 | while (__get_cpu_var(cpu_state) != CPU_UP_PREPARE) |
349 | cpu_relax(); | 349 | cpu_relax(); |
350 | } | 350 | } |
351 | |||
352 | void generic_set_cpu_dead(unsigned int cpu) | ||
353 | { | ||
354 | per_cpu(cpu_state, cpu) = CPU_DEAD; | ||
355 | } | ||
351 | #endif | 356 | #endif |
352 | 357 | ||
353 | int __cpuinit __cpu_up(unsigned int cpu) | 358 | int __cpuinit __cpu_up(unsigned int cpu) |