|
@@ -134,7 +134,10 @@ static int crash_nmi_callback(struct notifier_block *self,
|
|
|
|
|
|
static void smp_send_nmi_allbutself(void)
|
|
static void smp_send_nmi_allbutself(void)
|
|
{
|
|
{
|
|
- send_IPI_allbutself(NMI_VECTOR);
|
|
|
|
|
|
+ cpumask_t mask = cpu_online_map;
|
|
|
|
+ cpu_clear(safe_smp_processor_id(), mask);
|
|
|
|
+ if (!cpus_empty(mask))
|
|
|
|
+ send_IPI_mask(mask, NMI_VECTOR);
|
|
}
|
|
}
|
|
|
|
|
|
static struct notifier_block crash_nmi_nb = {
|
|
static struct notifier_block crash_nmi_nb = {
|