summaryrefslogtreecommitdiffstats
path: root/sys/netipx/ipx_ip.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netipx/ipx_ip.c')
-rw-r--r--sys/netipx/ipx_ip.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/sys/netipx/ipx_ip.c b/sys/netipx/ipx_ip.c
index 7abd9da..9062d3b 100644
--- a/sys/netipx/ipx_ip.c
+++ b/sys/netipx/ipx_ip.c
@@ -225,16 +225,8 @@ ipxip_input(m, hlen)
/*
* Deliver to IPX
*/
- s = splimp();
- if (IF_QFULL(ifq)) {
- IF_DROP(ifq);
- m_freem(m);
- splx(s);
- return;
- }
- IF_ENQUEUE(ifq, m);
- schednetisr(NETISR_IPX);
- splx(s);
+ if (IF_HANDOFF(ifq, m, NULL))
+ schednetisr(NETISR_IPX);
return;
}
OpenPOWER on IntegriCloud