diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2010-11-23 18:05:01 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-11-24 16:19:35 -0500 |
commit | c8b576061d87e2a4fb100e70c6a6dae189b3a310 (patch) | |
tree | ddc397a881f2b992cc6935dfe618223de6d33617 | |
parent | 72a8a3edd630995662bdc85957206685f376f9c4 (diff) |
ath9k: avoid aggregation for VO traffic
This should help with latency issues which can happen when
using aggregation.
Cc: Matt Smith <matt.smith@atheros.com>
Cc: Senthil Balasubramanian <senthilkumar@atheros.com>
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/rc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/rc.c b/drivers/net/wireless/ath/ath9k/rc.c index ee4566d9d234..3e6ea3bc3d89 100644 --- a/drivers/net/wireless/ath/ath9k/rc.c +++ b/drivers/net/wireless/ath/ath9k/rc.c | |||
@@ -1363,7 +1363,8 @@ static void ath_tx_status(void *priv, struct ieee80211_supported_band *sband, | |||
1363 | /* Check if aggregation has to be enabled for this tid */ | 1363 | /* Check if aggregation has to be enabled for this tid */ |
1364 | if (conf_is_ht(&sc->hw->conf) && | 1364 | if (conf_is_ht(&sc->hw->conf) && |
1365 | !(skb->protocol == cpu_to_be16(ETH_P_PAE))) { | 1365 | !(skb->protocol == cpu_to_be16(ETH_P_PAE))) { |
1366 | if (ieee80211_is_data_qos(fc)) { | 1366 | if (ieee80211_is_data_qos(fc) && |
1367 | skb_get_queue_mapping(skb) != IEEE80211_AC_VO) { | ||
1367 | u8 *qc, tid; | 1368 | u8 *qc, tid; |
1368 | struct ath_node *an; | 1369 | struct ath_node *an; |
1369 | 1370 | ||