Remove a use of if_start() - instead, use if_transmit() to dispatch the

frame.
This commit is contained in:
Adrian Chadd 2012-12-22 01:16:28 +00:00
parent 67314b8bd2
commit 88954eb02e

View File

@ -2324,6 +2324,5 @@ ieee80211_recv_pspoll(struct ieee80211_node *ni, struct mbuf *m0)
ifp = vap->iv_ic->ic_ifp;
else
ifp = vap->iv_ifp;
IF_ENQUEUE(&ifp->if_snd, m);
if_start(ifp);
(void) ifp->if_transmit(ifp, m);
}