diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2000-04-05 16:52:23 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2000-04-05 16:52:23 +0000 |
commit | 670ecadd81202b344c208d4ec18a88479034fc5d (patch) | |
tree | 95d4fb0a1bc8dfc92b24f60332744eed3a3fd8e7 /sys | |
parent | 8f2da8a800d4339fa29c8cd1aac32da1012c9228 (diff) |
run at splnet() instead of splimp()
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/hifn7751.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/hifn7751.c b/sys/dev/pci/hifn7751.c index d997a338bda..b34103780f0 100644 --- a/sys/dev/pci/hifn7751.c +++ b/sys/dev/pci/hifn7751.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hifn7751.c,v 1.25 2000/04/05 16:34:07 jason Exp $ */ +/* $OpenBSD: hifn7751.c,v 1.26 2000/04/05 16:52:22 jason Exp $ */ /* * Invertex AEON / Hi/fn 7751 driver @@ -243,7 +243,7 @@ hifn_attach(parent, self, aux) return; } intrstr = pci_intr_string(pc, ih); - sc->sc_ih = pci_intr_establish(pc, ih, IPL_IMP, hifn_intr, sc, + sc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, hifn_intr, sc, self->dv_xname); if (sc->sc_ih == NULL) { printf(": couldn't establish interrupt\n"); @@ -1057,7 +1057,7 @@ hifn_crypto(sc, cmd) cmd->dst_npa); #endif - s = splimp(); + s = splnet(); /* * need 1 cmd, and 1 res |