Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 113253
b: refs/heads/master
c: 3790025
h: refs/heads/master
i:
  113251: c7455dc
v: v3
  • Loading branch information
Alex Nixon authored and Ingo Molnar committed Aug 25, 2008
1 parent 9e3fd04 commit 66a3840
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 20 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: 93be71b672f167b1e8c23725114f86305354f0ac
refs/heads/master: 379002586368ae22916f668011c9118c8ce8189c
6 changes: 1 addition & 5 deletions trunk/arch/x86/kernel/cpu/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
17 changes: 4 additions & 13 deletions trunk/arch/x86/kernel/process_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
7 changes: 6 additions & 1 deletion trunk/include/asm-x86/smp.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__ */
Expand Down

0 comments on commit 66a3840

Please sign in to comment.