diff options
author | 2007-11-30 08:19:40 +0000 | |
---|---|---|
committer | 2007-11-30 08:19:40 +0000 | |
commit | 73bb9e10714217339c3e52c4732b2a8bba4c801c (patch) | |
tree | c4a4236b2d538f41f229b2547b6fd1670af88155 /sys/arch/mac68k | |
parent | Skip the sanity test introduced in r1.50 on TI devices, as it gets triggered (diff) | |
download | wireguard-openbsd-73bb9e10714217339c3e52c4732b2a8bba4c801c.tar.xz wireguard-openbsd-73bb9e10714217339c3e52c4732b2a8bba4c801c.zip |
Define IPL_VM on platforms which lack it.
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r-- | sys/arch/mac68k/include/intr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mac68k/include/intr.h b/sys/arch/mac68k/include/intr.h index 558610bec3c..b29ee66d211 100644 --- a/sys/arch/mac68k/include/intr.h +++ b/sys/arch/mac68k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.17 2007/07/29 21:24:05 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.18 2007/11/30 08:19:43 miod Exp $ */ /* $NetBSD: intr.h,v 1.9 1998/08/12 06:58:42 scottr Exp $ */ /* @@ -58,8 +58,10 @@ extern u_short mac68k_statclockipl; #define IPL_SOFTNET 1 #define IPL_SOFTCLOCK 1 #define IPL_BIO 2 +#define IPL_AUDIO PSLTOIPL(mac68k_audioipl) #define IPL_NET PSLTOIPL(mac68k_netipl) #define IPL_TTY PSLTOIPL(mac68k_ttyipl) +#define IPL_VM PSLTOIPL(mac68k_vmipl) #define IPL_CLOCK PSLTOIPL(mac68k_clockipl) #define IPL_STATCLOCK PSLTOIPL(mac68k_statclockipl) #define IPL_HIGH 7 |