diff options
| author | 2007-05-20 17:22:51 +0000 | |
|---|---|---|
| committer | 2007-05-20 17:22:51 +0000 | |
| commit | af884d8cd075b062ee43367d0d5e086c697de8e8 (patch) | |
| tree | 9240ef135649afe808bed459b13cd926f7f2bbb8 | |
| parent | make the package tools more aware of manpages: handle names correctly, (diff) | |
| download | wireguard-openbsd-af884d8cd075b062ee43367d0d5e086c697de8e8.tar.xz wireguard-openbsd-af884d8cd075b062ee43367d0d5e086c697de8e8.zip | |
On AV-class machines, SCSI interrupts still come from VIA2, not PSC, so
IPL_BIO should not be modified.
Found the hard way by martin@
| -rw-r--r-- | sys/arch/mac68k/mac68k/intr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mac68k/mac68k/intr.c b/sys/arch/mac68k/mac68k/intr.c index 77367fb1dc1..1df3f21aa9f 100644 --- a/sys/arch/mac68k/mac68k/intr.c +++ b/sys/arch/mac68k/mac68k/intr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.c,v 1.7 2006/03/13 19:39:52 brad Exp $ */ +/* $OpenBSD: intr.c,v 1.8 2007/05/20 17:22:51 miod Exp $ */ /* $NetBSD: intr.c,v 1.2 1998/08/25 04:03:56 scottr Exp $ */ /*- @@ -99,7 +99,7 @@ intr_init() mac68k_statclockipl = (PSL_S | PSL_IPL2); if (current_mac_model->class == MACH_CLASSAV) - mac68k_bioipl = mac68k_netipl = (PSL_S | PSL_IPL4); + mac68k_netipl = (PSL_S | PSL_IPL4); } intr_computeipl(); |
