summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-12-22 15:05:05 +0000
committermillert <millert@openbsd.org>2003-12-22 15:05:05 +0000
commit69f3b5d1e4ef508535e381d143aa7e8e381efcd4 (patch)
tree7d1d11dc3debabede62ac66810c511bcb4621d39
parentreload is used in signal handler, make it volatile sig_atomic_t (diff)
downloadwireguard-openbsd-69f3b5d1e4ef508535e381d143aa7e8e381efcd4.tar.xz
wireguard-openbsd-69f3b5d1e4ef508535e381d143aa7e8e381efcd4.zip
IPL_HIGH should be 7, not 6. This is purely cosmetic as that value is
not actually used but it makes things consistent wrt spls and potential future splasserts. miod@ OK.
-rw-r--r--sys/arch/hp300/include/intr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/include/intr.h b/sys/arch/hp300/include/intr.h
index 866efd622be..39876f354b1 100644
--- a/sys/arch/hp300/include/intr.h
+++ b/sys/arch/hp300/include/intr.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.h,v 1.10 2003/01/05 01:51:27 miod Exp $ */
+/* $OpenBSD: intr.h,v 1.11 2003/12/22 15:05:05 millert Exp $ */
/* $NetBSD: intr.h,v 1.2 1997/07/24 05:43:08 scottr Exp $ */
/*-
@@ -131,7 +131,7 @@ extern unsigned short hp300_impipl;
#define IPL_TTYNOBUF 4 /* XXX */
#define IPL_CLOCK 6
#define IPL_STATCLOCK 6
-#define IPL_HIGH 6
+#define IPL_HIGH 7
/* These spl calls are _not_ to be used by machine-independent code. */
#define splhil() _splraise(PSL_S|PSL_IPL1)