remove call to IFQ_HANDOFF is it called by if_transmit in the default case

and doing so allows the ifnet driver to define its own queueing mechanism
This commit is contained in:
Kip Macy 2009-04-27 22:44:26 +00:00
parent 04e8ac36ab
commit 1bc27a1ce3

View File

@ -237,7 +237,7 @@ arc_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst,
BPF_MTAP(ifp, m);
IFQ_HANDOFF(ifp, m, error);
error = ifp->if_transmit(ifp, m);
return (error);