aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Long <scottl@FreeBSD.org>2003-07-01 16:00:38 +0000
committerScott Long <scottl@FreeBSD.org>2003-07-01 16:00:38 +0000
commit79501b66a7118982e95e7f9dd720d8384311cdcb (patch)
tree10fac55d63aebc224c59f4cee1fdf3d212e5f147
parent745a4a9ef8ee3864c88b94a771d30d9475641fc9 (diff)
Notes
-rw-r--r--sys/kern/kern_intr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_intr.c b/sys/kern/kern_intr.c
index ef1cfc1a0d40..b605edf80b90 100644
--- a/sys/kern/kern_intr.c
+++ b/sys/kern/kern_intr.c
@@ -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;