aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/smp.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/arch/x86/kernel/smp.c b/arch/x86/kernel/smp.c
index 228e7405511a..48d2b7ded422 100644
--- a/arch/x86/kernel/smp.c
+++ b/arch/x86/kernel/smp.c
@@ -110,6 +110,7 @@
110 */ 110 */
111 111
112static atomic_t stopping_cpu = ATOMIC_INIT(-1); 112static atomic_t stopping_cpu = ATOMIC_INIT(-1);
113static bool smp_no_nmi_ipi = false;
113 114
114/* 115/*
115 * this function sends a 'reschedule' IPI to another CPU. 116 * this function sends a 'reschedule' IPI to another CPU.
@@ -216,7 +217,7 @@ static void native_stop_other_cpus(int wait)
216 } 217 }
217 218
218 /* if the REBOOT_VECTOR didn't work, try with the NMI */ 219 /* if the REBOOT_VECTOR didn't work, try with the NMI */
219 if ((num_online_cpus() > 1)) { 220 if ((num_online_cpus() > 1) && (!smp_no_nmi_ipi)) {
220 if (register_nmi_handler(NMI_LOCAL, smp_stop_nmi_callback, 221 if (register_nmi_handler(NMI_LOCAL, smp_stop_nmi_callback,
221 NMI_FLAG_FIRST, "smp_stop")) 222 NMI_FLAG_FIRST, "smp_stop"))
222 /* Note: we ignore failures here */ 223 /* Note: we ignore failures here */
@@ -245,11 +246,6 @@ finish:
245 local_irq_restore(flags); 246 local_irq_restore(flags);
246} 247}
247 248
248static void native_smp_disable_nmi_ipi(void)
249{
250 smp_ops.stop_other_cpus = native_irq_stop_other_cpus;
251}
252
253/* 249/*
254 * Reschedule call back. 250 * Reschedule call back.
255 */ 251 */
@@ -283,8 +279,8 @@ void smp_call_function_single_interrupt(struct pt_regs *regs)
283 279
284static int __init nonmi_ipi_setup(char *str) 280static int __init nonmi_ipi_setup(char *str)
285{ 281{
286 native_smp_disable_nmi_ipi(); 282 smp_no_nmi_ipi = true;
287 return 1; 283 return 1;
288} 284}
289 285
290__setup("nonmi_ipi", nonmi_ipi_setup); 286__setup("nonmi_ipi", nonmi_ipi_setup);