diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-11-21 21:01:36 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-11-21 21:01:36 +0000 |
commit | 482e8846fa64d561078abdc100e76868d995c857 (patch) | |
tree | dbea912a277c14f9b00a15bcf936c2b3a3530c1c | |
parent | 06b794f63c3509c500c8c3a10584da3b536f0da4 (diff) |
Don't bother using _cpu_intr_raise() for splhigh(), use _cpu_intr_suspend().
-rw-r--r-- | sys/arch/landisk/include/intr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/landisk/include/intr.h b/sys/arch/landisk/include/intr.h index 389e6d1bea4..2db2eded584 100644 --- a/sys/arch/landisk/include/intr.h +++ b/sys/arch/landisk/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.2 2006/11/20 17:54:05 drahn Exp $ */ +/* $OpenBSD: intr.h,v 1.3 2006/11/21 21:01:35 miod Exp $ */ /* $NetBSD: intr.h,v 1.1 2006/09/01 21:26:18 uwe Exp $ */ /*- @@ -61,7 +61,7 @@ #define splclock() _cpu_intr_raise(IPL_CLOCK << 4) #define splstatclock() splclock() #define splsched() splclock() -#define splhigh() _cpu_intr_raise(IPL_HIGH << 4) +#define splhigh() _cpu_intr_suspend() #define spllock() splhigh() #define spl0() _cpu_intr_resume(IPL_NONE << 4) |