diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-11-21 19:04:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-11-21 19:04:53 +0000 |
commit | 24821b87ca0e4a692eba124e2b7c7d6237ddb469 (patch) | |
tree | 3c7efe4e0f158d483c6e067506edb8c783aa1dab /sys/arch/mvme88k/include | |
parent | cc2e9497bb747a31205c2703312b7cd0570f564f (diff) |
Lower splvm() level, after discussing with art.
Diffstat (limited to 'sys/arch/mvme88k/include')
-rw-r--r-- | sys/arch/mvme88k/include/intr.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/include/intr.h b/sys/arch/mvme88k/include/intr.h index 3479240c8cd..940b2fc36e0 100644 --- a/sys/arch/mvme88k/include/intr.h +++ b/sys/arch/mvme88k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.3 2001/08/26 14:31:07 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.4 2001/11/21 19:04:52 miod Exp $ */ /* * Copyright (C) 2000 Steve Murphree, Jr. * All rights reserved. @@ -73,11 +73,10 @@ extern int intrcnt[M88K_NIRQ]; #define IPL_NET 3 #define IPL_IMP 3 #define IPL_TTY 3 +#define IPL_VM 3 #define IPL_CLOCK 5 #define IPL_STATCLOCK 5 -#define IPL_VM 6 #define IPL_HIGH 6 -#define IPL_SCHED 6 #define IPL_NMI 7 #define IPL_ABORT 7 @@ -117,7 +116,6 @@ above... #define splimp() setipl(IPL_IMP) #define splvm() setipl(IPL_VM) #define splhigh() setipl(IPL_HIGH) -#define splsched() setipl(IPL_SCHED) #define splx(x) ((x) ? setipl((x)) : spl0()) |