Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 88763
b: refs/heads/master
c: f694010
h: refs/heads/master
i:
  88761: 00ae5d8
  88759: 91a2434
v: v3
  • Loading branch information
Gautham R Shenoy authored and Ingo Molnar committed Apr 17, 2008
1 parent 4b0a71c commit e381370
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: 12db648c1518b2627cc983199a97ec6f5d6a1de2
refs/heads/master: f694010185c429629ad5a65245da08103e611852
5 changes: 4 additions & 1 deletion trunk/arch/x86/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,10 @@
*/
static void native_smp_send_reschedule(int cpu)
{
WARN_ON(cpu_is_offline(cpu));
if (unlikely(cpu_is_offline(cpu))) {
WARN_ON(1);
return;
}
send_IPI_mask(cpumask_of_cpu(cpu), RESCHEDULE_VECTOR);
}

Expand Down

0 comments on commit e381370

Please sign in to comment.