From d5dd726d141ecb01589a6ad9226fcfc37ae3d30c Mon Sep 17 00:00:00 2001 From: Alex Nixon Date: Fri, 22 Aug 2008 11:52:14 +0100 Subject: [PATCH] --- yaml --- r: 113255 b: refs/heads/master c: 8227dce7dc2cfdcc28ee0eadfb482a7ee77fba03 h: refs/heads/master i: 113253: 66a38400498af5df224c7a6049854e6290362789 113251: c7455dc7048c941fd6d23d44086ffabe3526c438 113247: 7c8abf0ee42a485ac226dba8f0326b5b26477931 v: v3 --- [refs] | 2 +- trunk/arch/x86/kernel/smpboot.c | 40 +++++++++++++++++++-------------- trunk/include/asm-x86/smp.h | 1 + 3 files changed, 25 insertions(+), 18 deletions(-) diff --git a/[refs] b/[refs] index 7c47bb0dcdaf..14e552d01d10 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: a21f5d88c17a40941f6239d1959d89e8493e8e01 +refs/heads/master: 8227dce7dc2cfdcc28ee0eadfb482a7ee77fba03 diff --git a/trunk/arch/x86/kernel/smpboot.c b/trunk/arch/x86/kernel/smpboot.c index 28b4287296aa..66b04e598817 100644 --- a/trunk/arch/x86/kernel/smpboot.c +++ b/trunk/arch/x86/kernel/smpboot.c @@ -1346,25 +1346,9 @@ static void __ref remove_cpu_from_maps(int cpu) numa_remove_cpu(cpu); } -int native_cpu_disable(void) +void cpu_disable_common(void) { int cpu = smp_processor_id(); - - /* - * Perhaps use cpufreq to drop frequency, but that could go - * into generic code. - * - * We won't take down the boot processor on i386 due to some - * interrupts only being able to be serviced by the BSP. - * Especially so if we're not using an IOAPIC -zwane - */ - if (cpu == 0) - return -EBUSY; - - if (nmi_watchdog == NMI_LOCAL_APIC) - stop_apic_nmi_watchdog(NULL); - clear_local_APIC(); - /* * HACK: * Allow any queued timer interrupts to get serviced @@ -1382,6 +1366,28 @@ int native_cpu_disable(void) remove_cpu_from_maps(cpu); unlock_vector_lock(); fixup_irqs(cpu_online_map); +} + +int native_cpu_disable(void) +{ + int cpu = smp_processor_id(); + + /* + * Perhaps use cpufreq to drop frequency, but that could go + * into generic code. + * + * We won't take down the boot processor on i386 due to some + * interrupts only being able to be serviced by the BSP. + * Especially so if we're not using an IOAPIC -zwane + */ + if (cpu == 0) + return -EBUSY; + + if (nmi_watchdog == NMI_LOCAL_APIC) + stop_apic_nmi_watchdog(NULL); + clear_local_APIC(); + + cpu_disable_common(); return 0; } diff --git a/trunk/include/asm-x86/smp.h b/trunk/include/asm-x86/smp.h index 17305e72f348..8bdaa4a25f05 100644 --- a/trunk/include/asm-x86/smp.h +++ b/trunk/include/asm-x86/smp.h @@ -125,6 +125,7 @@ static inline void arch_send_call_function_ipi(cpumask_t mask) smp_ops.send_call_func_ipi(mask); } +void cpu_disable_common(void); void native_smp_prepare_boot_cpu(void); void native_smp_prepare_cpus(unsigned int max_cpus); void native_smp_cpus_done(unsigned int max_cpus);