diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-03-12 02:49:51 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-03-12 02:49:51 +0000 |
commit | 46c4aad2f0d277357a13d751a95eaf37e7c4fcd5 (patch) | |
tree | dca8ebc2e05e5d915b055be08dd315e5f11ad957 /sys/arch/mvmeppc | |
parent | 8c9b704874cd38a9400c18a6cd8f343c3c4b6a1a (diff) |
IPL_IMP -> IPL_VM
ok drahn@
Diffstat (limited to 'sys/arch/mvmeppc')
-rw-r--r-- | sys/arch/mvmeppc/dev/openpic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvmeppc/dev/openpic.c b/sys/arch/mvmeppc/dev/openpic.c index d4a928ff0e1..f2574be64a5 100644 --- a/sys/arch/mvmeppc/dev/openpic.c +++ b/sys/arch/mvmeppc/dev/openpic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: openpic.c,v 1.20 2004/12/24 22:50:30 miod Exp $ */ +/* $OpenBSD: openpic.c,v 1.21 2006/03/12 02:49:49 brad Exp $ */ /*- * Copyright (c) 1995 Per Fogelstrom @@ -505,15 +505,15 @@ intr_calculatemasks() /* * There are tty, network and disk drivers that use free() at interrupt - * time, so imp > (tty | net | bio). + * time, so vm > (tty | net | bio). * * Enforce a hierarchy that gives slow devices a better chance at not * dropping data. */ imask[IPL_NET] |= imask[IPL_BIO]; imask[IPL_TTY] |= imask[IPL_NET]; - imask[IPL_IMP] |= imask[IPL_TTY]; - imask[IPL_CLOCK] |= imask[IPL_IMP] | SPL_CLOCK; + imask[IPL_VM] |= imask[IPL_TTY]; + imask[IPL_CLOCK] |= imask[IPL_VM] | SPL_CLOCK; /* * These are pseudo-levels. |