Make swi_vm be INTR_MPSAFE. On all platforms, it is only used to activate

busdma_swi().  Now that busdma_swi() uses driver-provided locking, this
should be safe.
This commit is contained in:
scottl 2003-07-01 16:00:38 +00:00
parent 1d6d4a9cc0
commit 5d14736333

@ -571,7 +571,7 @@ start_softintr(void *dummy)
if (swi_add(&clk_ithd, "clock", softclock, NULL, SWI_CLOCK,
INTR_MPSAFE, &softclock_ih) ||
swi_add(NULL, "vm", swi_vm, NULL, SWI_VM, 0, &vm_ih))
swi_add(NULL, "vm", swi_vm, NULL, SWI_VM, INTR_MPSAFE, &vm_ih))
panic("died while creating standard software ithreads");
p = clk_ithd->it_td->td_proc;