diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-11-11 22:39:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-11-11 22:39:12 +0000 |
commit | d9d3dfe9837f9234cfe4eee98d2e3fa1d25074d1 (patch) | |
tree | 1e4f7494db9a85f1e16deb627fc4d39c86ad35b4 /package/mac80211/patches/560-ath9k_aggr_sampling_fix.patch | |
parent | 51fa01f42c5424c24af3d3bb6a965a4dc9b3aacd (diff) | |
download | mtk-20170518-d9d3dfe9837f9234cfe4eee98d2e3fa1d25074d1.zip mtk-20170518-d9d3dfe9837f9234cfe4eee98d2e3fa1d25074d1.tar.gz mtk-20170518-d9d3dfe9837f9234cfe4eee98d2e3fa1d25074d1.tar.bz2 |
mac80211: update to wireless-testing 2010-11-10 + some pending work
SVN-Revision: 23968
Diffstat (limited to 'package/mac80211/patches/560-ath9k_aggr_sampling_fix.patch')
-rw-r--r-- | package/mac80211/patches/560-ath9k_aggr_sampling_fix.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/package/mac80211/patches/560-ath9k_aggr_sampling_fix.patch b/package/mac80211/patches/560-ath9k_aggr_sampling_fix.patch deleted file mode 100644 index 66a3419..0000000 --- a/package/mac80211/patches/560-ath9k_aggr_sampling_fix.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- 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_ - u16 aggr_limit = 0, al = 0, bpad = 0, - al_delta, h_baw = tid->baw_size / 2; - enum ATH_AGGR_STATUS status = ATH_AGGR_DONE; -+ struct ieee80211_tx_info *tx_info; - - bf_first = list_first_entry(&tid->buf_q, struct ath_buf, list); - -@@ -699,6 +700,11 @@ static enum ATH_AGGR_STATUS ath_tx_form_ - break; - } - -+ tx_info = IEEE80211_SKB_CB(bf->bf_mpdu); -+ if (nframes && ((tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) || -+ !(tx_info->control.rates[0].flags & IEEE80211_TX_RC_MCS))) -+ break; -+ - /* do not exceed subframe limit */ - if (nframes >= min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) { - status = ATH_AGGR_LIMITED; |