diff options
Diffstat (limited to 'arch/x86/kernel/reboot.c')
| -rw-r--r-- | arch/x86/kernel/reboot.c | 7 | 
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index 09d6bded3c1e..0cc7c0b106bb 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c @@ -828,11 +828,6 @@ static int crash_nmi_callback(unsigned int val, struct pt_regs *regs)  	return NMI_HANDLED;  } -static void smp_send_nmi_allbutself(void) -{ -	apic->send_IPI_allbutself(NMI_VECTOR); -} -  /*   * Halt all other CPUs, calling the specified function on each of them   * @@ -861,7 +856,7 @@ void nmi_shootdown_cpus(nmi_shootdown_cb callback)  	 */  	wmb(); -	smp_send_nmi_allbutself(); +	apic_send_IPI_allbutself(NMI_VECTOR);  	/* Kick CPUs looping in NMI context. */  	WRITE_ONCE(crash_ipi_issued, 1);  |