diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-04-29 23:43:04 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-04-29 23:43:04 +0000 |
commit | 61e0695c7fe9195a1c1313df3e793d3e9abf3ac1 (patch) | |
tree | ebb2c9b93d193c5a567cd23c8833f9569d59b516 /sys/arch | |
parent | e7e2b24f7e198afcb5d052b286e006921e31f238 (diff) |
Enforce the bio <= net <= tty <= imp <= clock spl level ordering by fixing
the tty spl, too low.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mac68k/mac68k/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mac68k/mac68k/machdep.c b/sys/arch/mac68k/mac68k/machdep.c index 8108df138ac..d3a78aab825 100644 --- a/sys/arch/mac68k/mac68k/machdep.c +++ b/sys/arch/mac68k/mac68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.99 2002/04/27 01:52:13 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.100 2002/04/29 23:43:03 miod Exp $ */ /* $NetBSD: machdep.c,v 1.207 1998/07/08 04:39:34 thorpej Exp $ */ /* @@ -210,7 +210,7 @@ int safepri = PSL_LOWIPL; * Q700/900/950 where the interrupt controller may be reprogrammed to * interrupt on different levels as listed in locore.s */ -unsigned short mac68k_ttyipl = PSL_S | PSL_IPL1; +unsigned short mac68k_ttyipl = PSL_S | PSL_IPL2; unsigned short mac68k_bioipl = PSL_S | PSL_IPL2; unsigned short mac68k_netipl = PSL_S | PSL_IPL2; unsigned short mac68k_impipl = PSL_S | PSL_IPL2; |