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

frame.
This commit is contained in:
adrian 2012-12-22 01:16:28 +00:00
parent 25bbadc6fa
commit 60bdcd31a7

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);
}