x86_32: clean up play_dead
authorAlex Nixon <alex.nixon@citrix.com>
Fri, 22 Aug 2008 10:52:12 +0000 (11:52 +0100)
committerIngo Molnar <mingo@elte.hu>
Mon, 25 Aug 2008 08:59:18 +0000 (10:59 +0200)
The removal of the CPU from the various maps was redundant as it already
happened in cpu_disable.

After cleaning this up, cpu_uninit only resets the tlb state, so rename
it and create a noop version for the X86_64 case (so the two play_deads
can be unified later).

Signed-off-by: Alex Nixon <alex.nixon@citrix.com>
Acked-by: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/cpu/common.c
arch/x86/kernel/process_32.c
include/asm-x86/smp.h

index 80ab20d4fa39913ce2a7b4ea5676883bb6f9d96f..18f5551b32dd81ce377fb23a941869f15fe1e6b6 100644 (file)
@@ -714,14 +714,10 @@ void __cpuinit cpu_init(void)
        mxcsr_feature_mask_init();
 }
 
-#ifdef CONFIG_HOTPLUG_CPU
-void __cpuinit cpu_uninit(void)
+void reset_lazy_tlbstate(void)
 {
        int cpu = raw_smp_processor_id();
-       cpu_clear(cpu, cpu_initialized);
 
-       /* lazy TLB state */
        per_cpu(cpu_tlbstate, cpu).state = 0;
        per_cpu(cpu_tlbstate, cpu).active_mm = &init_mm;
 }
-#endif
index e382fe0ccd663cd4cb40a36b3dd2512fe4cc915f..d55eb49584b1fc9104555b0185418a7d2d0d420b 100644 (file)
@@ -75,26 +75,17 @@ unsigned long thread_saved_pc(struct task_struct *tsk)
 #ifdef CONFIG_HOTPLUG_CPU
 #include <asm/nmi.h>
 
-static void cpu_exit_clear(void)
+/* We don't actually take CPU down, just spin without interrupts. */
+void native_play_dead(void)
 {
        int cpu = raw_smp_processor_id();
 
        idle_task_exit();
 
-       cpu_uninit();
-       irq_ctx_exit(cpu);
+       reset_lazy_tlbstate();
 
-       cpu_clear(cpu, cpu_callout_map);
-       cpu_clear(cpu, cpu_callin_map);
-
-       numa_remove_cpu(cpu);
-}
+       irq_ctx_exit(cpu);
 
-/* We don't actually take CPU down, just spin without interrupts. */
-void native_play_dead(void)
-{
-       /* This must be done before dead CPU ack */
-       cpu_exit_clear();
        mb();
        /* Ack it */
        __get_cpu_var(cpu_state) = CPU_DEAD;
index dbf4249e2a6d7a73c08de6d39cc2b9eb7a540542..3bec6b478213accefdf677e7cb91b4122326fca5 100644 (file)
@@ -221,7 +221,12 @@ static inline int hard_smp_processor_id(void)
 #endif /* CONFIG_X86_LOCAL_APIC */
 
 #ifdef CONFIG_HOTPLUG_CPU
-extern void cpu_uninit(void);
+#ifdef CONFIG_X86_32
+extern void reset_lazy_tlbstate(void);
+#else
+static inline void reset_lazy_tlbstate(void)
+{ }
+#endif /* CONFIG_X86_32 */
 #endif
 
 #endif /* __ASSEMBLY__ */
This page took 0.027607 seconds and 5 git commands to generate.