aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/smp.c
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2011-03-31 18:23:37 -0400
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2011-04-01 00:37:33 -0400
commit105765f451d3ff007bb4ae3761e825686d9615db (patch)
treed1b224faab2237a5e17f1e4139f596f75e77acb3 /arch/powerpc/kernel/smp.c
parent734796f12351f9a0f38c47b981414f82d852f222 (diff)
powerpc/smp: Don't expose per-cpu "cpu_state" array
Instead, keep it static, expose an accessor and use that from the PowerMac code. Avoids easy namespace collisions and will make it easier to consolidate with other implementations. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/smp.c')
-rw-r--r--arch/powerpc/kernel/smp.c7
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 */
308DEFINE_PER_CPU(int, cpu_state) = { 0 }; 308static DEFINE_PER_CPU(int, cpu_state) = { 0 };
309 309
310int generic_cpu_disable(void) 310int 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
352void generic_set_cpu_dead(unsigned int cpu)
353{
354 per_cpu(cpu_state, cpu) = CPU_DEAD;
355}
351#endif 356#endif
352 357
353int __cpuinit __cpu_up(unsigned int cpu) 358int __cpuinit __cpu_up(unsigned int cpu)