aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ppbus
diff options
context:
space:
mode:
authorJonathan Lemon <jlemon@FreeBSD.org>2003-03-04 23:19:55 +0000
committerJonathan Lemon <jlemon@FreeBSD.org>2003-03-04 23:19:55 +0000
commit1cafed3941f1a4e9d2beb4fb126e91018505dfd4 (patch)
treef304f726e8973253d3e8a87e56119fec0276a61c /sys/dev/ppbus
parentc141c242ac0a55a34b58cf2b06d13964d00507a4 (diff)
Notes
Diffstat (limited to 'sys/dev/ppbus')
-rw-r--r--sys/dev/ppbus/if_plip.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/sys/dev/ppbus/if_plip.c b/sys/dev/ppbus/if_plip.c
index 5ba4dc3a6099..7c3b2c5f653e 100644
--- a/sys/dev/ppbus/if_plip.c
+++ b/sys/dev/ppbus/if_plip.c
@@ -520,11 +520,7 @@ lp_intr (void *arg)
if (top) {
if (sc->sc_if.if_bpf)
lptap(&sc->sc_if, top);
- if (! IF_HANDOFF(&ipintrq, top, NULL)) {
- lprintf("DROP");
- } else {
- schednetisr(NETISR_IP);
- }
+ netisr_queue(NETISR_IP, top);
}
goto done;
}
@@ -569,11 +565,7 @@ lp_intr (void *arg)
if (top) {
if (sc->sc_if.if_bpf)
lptap(&sc->sc_if, top);
- if (! IF_HANDOFF(&ipintrq, top, NULL)) {
- lprintf("DROP");
- } else {
- schednetisr(NETISR_IP);
- }
+ netisr_queue(NETISR_IP, top);
}
}
goto done;