Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 269280
b: refs/heads/master
c: 0b2b06e
h: refs/heads/master
v: v3
  • Loading branch information
Steven Miao authored and Mike Frysinger committed Oct 25, 2011
1 parent 58214fb commit 1529afd
Show file tree
Hide file tree
Showing 2 changed files with 7 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: 74b654176aa15e06b81f26416654b9cd91bd9601
refs/heads/master: 0b2b06efd81ceb1630babcf2990f9577a17c132f
7 changes: 6 additions & 1 deletion trunk/arch/blackfin/mach-common/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,15 @@ EXPORT_SYMBOL_GPL(smp_call_function_single);

void smp_send_reschedule(int cpu)
{
cpumask_t callmap;
/* simply trigger an ipi */
if (cpu_is_offline(cpu))
return;
platform_send_ipi_cpu(cpu, IRQ_SUPPLE_0);

cpumask_clear(&callmap);
cpumask_set_cpu(cpu, &callmap);

smp_send_message(callmap, BFIN_IPI_RESCHEDULE, NULL, NULL, 0);

return;
}
Expand Down

0 comments on commit 1529afd

Please sign in to comment.