|
@@ -1556,8 +1556,10 @@ void ath9k_release_buffered_frames(struct ieee80211_hw *hw,
|
|
|
__skb_unlink(bf->bf_mpdu, tid_q);
|
|
|
list_add_tail(&bf->list, &bf_q);
|
|
|
ath_set_rates(tid->an->vif, tid->an->sta, bf);
|
|
|
- ath_tx_addto_baw(sc, tid, bf);
|
|
|
- bf->bf_state.bf_type &= ~BUF_AGGR;
|
|
|
+ if (bf_isampdu(bf)) {
|
|
|
+ ath_tx_addto_baw(sc, tid, bf);
|
|
|
+ bf->bf_state.bf_type &= ~BUF_AGGR;
|
|
|
+ }
|
|
|
if (bf_tail)
|
|
|
bf_tail->bf_next = bf;
|
|
|
|