1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-06 13:09:50 +00:00

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 Chadd 2013-01-21 07:50:38 +00:00
parent a9216e0b16
commit f74d878fda
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=245739

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