Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 37712
b: refs/heads/master
c: bc03613
h: refs/heads/master
v: v3
  • Loading branch information
Fernando Vazquez authored and Linus Torvalds committed Oct 1, 2006
1 parent 91615db commit 0fe7cbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: ce53af9496c625a8ae33526713be34a23756db19
refs/heads/master: bc03613decef0cc4d2f3a24f19fa5a868745715f
5 changes: 4 additions & 1 deletion trunk/arch/i386/kernel/crash.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,10 @@ static int crash_nmi_callback(struct notifier_block *self,

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 = {
Expand Down

0 comments on commit 0fe7cbc

Please sign in to comment.