summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2002-01-26 15:22:53 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2002-01-26 15:22:53 +0000
commit748072ba50dbda32fce83ce178f8598c66dc7f9a (patch)
tree574f10932c102aaa5cefcf2a1c5c4c2edf8662a1 /sys/arch/powerpc
parentbe52b3b2ed3238076deeb48c7dace07f8fd11811 (diff)
splclock() should block SPL_BIO - SPL_IMP.
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r--sys/arch/powerpc/include/intr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/intr.h b/sys/arch/powerpc/include/intr.h
index cf85f7476ea..4d498d48790 100644
--- a/sys/arch/powerpc/include/intr.h
+++ b/sys/arch/powerpc/include/intr.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.h,v 1.15 2002/01/21 17:20:22 drahn Exp $ */
+/* $OpenBSD: intr.h,v 1.16 2002/01/26 15:22:52 drahn Exp $ */
/*
* Copyright (c) 1997 Per Fogelstrom, Opsycon AB and RTMX Inc, USA.
@@ -130,8 +130,8 @@ set_sint(int pending)
#define splbio() splraise(imask[IPL_BIO])
#define splnet() splraise(imask[IPL_NET])
#define spltty() splraise(imask[IPL_TTY])
-#define splclock() splraise(SPL_CLOCK|SINT_MASK)
#define splimp() splraise(imask[IPL_IMP])
+#define splclock() splraise(imask[IPL_CLOCK])
#define splvm() splraise(imask[IPL_IMP])
#define splstatclock() splhigh()
#define spllowersoftclock() spllower(SINT_CLOCK)