diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/xmit.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/xmit.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/xmit.c b/drivers/net/wireless/ath/ath9k/xmit.c index d077186da870..30ef2dfc1ed2 100644 --- a/drivers/net/wireless/ath/ath9k/xmit.c +++ b/drivers/net/wireless/ath/ath9k/xmit.c | |||
@@ -673,6 +673,7 @@ static enum ATH_AGGR_STATUS ath_tx_form_aggr(struct ath_softc *sc, | |||
673 | u16 aggr_limit = 0, al = 0, bpad = 0, | 673 | u16 aggr_limit = 0, al = 0, bpad = 0, |
674 | al_delta, h_baw = tid->baw_size / 2; | 674 | al_delta, h_baw = tid->baw_size / 2; |
675 | enum ATH_AGGR_STATUS status = ATH_AGGR_DONE; | 675 | enum ATH_AGGR_STATUS status = ATH_AGGR_DONE; |
676 | struct ieee80211_tx_info *tx_info; | ||
676 | 677 | ||
677 | bf_first = list_first_entry(&tid->buf_q, struct ath_buf, list); | 678 | bf_first = list_first_entry(&tid->buf_q, struct ath_buf, list); |
678 | 679 | ||
@@ -699,6 +700,11 @@ static enum ATH_AGGR_STATUS ath_tx_form_aggr(struct ath_softc *sc, | |||
699 | break; | 700 | break; |
700 | } | 701 | } |
701 | 702 | ||
703 | tx_info = IEEE80211_SKB_CB(bf->bf_mpdu); | ||
704 | if (nframes && ((tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) || | ||
705 | !(tx_info->control.rates[0].flags & IEEE80211_TX_RC_MCS))) | ||
706 | break; | ||
707 | |||
702 | /* do not exceed subframe limit */ | 708 | /* do not exceed subframe limit */ |
703 | if (nframes >= min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) { | 709 | if (nframes >= min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) { |
704 | status = ATH_AGGR_LIMITED; | 710 | status = ATH_AGGR_LIMITED; |
@@ -2157,7 +2163,7 @@ static void ath_tx_complete_poll_work(struct work_struct *work) | |||
2157 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_RESET, | 2163 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_RESET, |
2158 | "tx hung, resetting the chip\n"); | 2164 | "tx hung, resetting the chip\n"); |
2159 | ath9k_ps_wakeup(sc); | 2165 | ath9k_ps_wakeup(sc); |
2160 | ath_reset(sc, false); | 2166 | ath_reset(sc, true); |
2161 | ath9k_ps_restore(sc); | 2167 | ath9k_ps_restore(sc); |
2162 | } | 2168 | } |
2163 | 2169 | ||