diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-17 01:13:08 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-17 01:13:08 +0000 |
commit | 0010267e96aaaf97e6480064e2a87cd397eb54e6 (patch) | |
tree | 7be734680074bfa414d6039bd6d3773eaa109d1a /sys | |
parent | 15903e0f34b87bf1c08c0ebd26b5d0034b7fc22f (diff) |
Decrease splvm() level to the splimp() level.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hp300/include/intr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/include/intr.h b/sys/arch/hp300/include/intr.h index a5a86ea7bb7..1fe9ba271f5 100644 --- a/sys/arch/hp300/include/intr.h +++ b/sys/arch/hp300/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.5 2001/11/23 00:47:39 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.6 2001/12/17 01:13:07 miod Exp $ */ /* $NetBSD: intr.h,v 1.2 1997/07/24 05:43:08 scottr Exp $ */ /*- @@ -151,7 +151,7 @@ extern unsigned short hp300_impipl; #define splimp() _splraise(hp300_impipl) #define splclock() spl6() #define splstatclock() spl6() -#define splvm() spl6() +#define splvm() splimp() #define splhigh() spl7() /* watch out for side effects */ |