Remove some unused code in ipi_selected() .
The code path this was copied from (sys/i386/i386/mp_machdep.c:ipi_selected()) handles bitmap'ed IPIs and normal IPIs via separate notification paths. Xen SMP handles them the same way.
This commit is contained in:
parent
5e9448f437
commit
ff7c20c8cb
@ -1146,11 +1146,6 @@ ipi_selected(cpumask_t cpus, u_int ipi)
|
||||
void
|
||||
ipi_all_but_self(u_int ipi)
|
||||
{
|
||||
|
||||
if (IPI_IS_BITMAPED(ipi) || (ipi == IPI_STOP && stop_cpus_with_nmi)) {
|
||||
ipi_selected(PCPU_GET(other_cpus), ipi);
|
||||
return;
|
||||
}
|
||||
CTR2(KTR_SMP, "%s: ipi: %x", __func__, ipi);
|
||||
ipi_selected(PCPU_GET(other_cpus), ipi);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user