Fix this routine to acutally break out and not set clrdmask if any

of the TIDs are currently marked as "filtered."
This commit is contained in:
adrian 2013-01-21 07:50:38 +00:00
parent d7f656bdeb
commit 7a0ff694d2

View File

@ -2906,7 +2906,7 @@ ath_tx_set_clrdmask(struct ath_softc *sc, struct ath_node *an)
for (i = 0; i < IEEE80211_TID_SIZE; i++) {
if (an->an_tid[i].isfiltered == 1)
break;
return;
}
an->clrdmask = 1;
}