SMP - smp_schedule()

- always issues an IPI
This commit is contained in:
Tomas Hruby 2011-11-04 17:59:31 +00:00 committed by Tomas Hruby
parent 41bd5f2fc6
commit 0bb56e0e04

View file

@ -62,12 +62,6 @@ PUBLIC void smp_ipi_halt_handler(void)
PUBLIC void smp_schedule(unsigned cpu)
{
/*
* check if the cpu is processing some other ipi already. If yes, no
* need to wake it up
*/
if (sched_ipi_data[cpu].flags != 0)
return;
arch_send_smp_schedule_ipi(cpu);
}