mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Don't schedule a CALL_FUNCTION_VECTOR software IPI if the IPI was signaled
via the bitmap (and thus sent via RESCHEDULE_VECTOR.)
This commit is contained in:
parent
2a61ba476b
commit
d68bbb81fb
1 changed files with 3 additions and 3 deletions
|
|
@ -1132,10 +1132,10 @@ ipi_selected(cpumask_t cpus, u_int ipi)
|
|||
ipi_pcpu(cpu, RESCHEDULE_VECTOR);
|
||||
continue;
|
||||
|
||||
} else {
|
||||
KASSERT(call_data != NULL, ("call_data not set"));
|
||||
ipi_pcpu(cpu, CALL_FUNCTION_VECTOR);
|
||||
}
|
||||
|
||||
KASSERT(call_data != NULL, ("call_data not set"));
|
||||
ipi_pcpu(cpu, CALL_FUNCTION_VECTOR);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue