diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-03-11 09:58:35 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-03-11 09:58:35 +0000 |
commit | f726d67de94d819c8a8b12c5d21f4d00312dc9b5 (patch) | |
tree | b573ccf5fc82280d0f36c3aace5ee74300c85d0b /sys/dev | |
parent | e0415ec62c3eef7014b05859e64df5bd3077d5b6 (diff) |
splvm.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/pccbb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/pccbb.c b/sys/dev/pci/pccbb.c index eeef546fccb..9432f2dae47 100644 --- a/sys/dev/pci/pccbb.c +++ b/sys/dev/pci/pccbb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pccbb.c,v 1.42 2006/03/11 04:07:28 brad Exp $ */ +/* $OpenBSD: pccbb.c,v 1.43 2006/03/11 09:58:34 brad Exp $ */ /* $NetBSD: pccbb.c,v 1.96 2004/03/28 09:49:31 nakayama Exp $ */ /* @@ -1096,6 +1096,8 @@ pccbbintr_function(sc) s = splclock(); } else if (pil->pil_level == IPL_AUDIO) { s = splaudio(); + } else if (pil->pil_level == IPL_VM) { + s = splvm(); } else if (pil->pil_level == IPL_TTY) { s = spltty(); #if 0 |