Skip to content

Commit

Permalink
mac80211: avoid aggregation for VO traffic
Browse files Browse the repository at this point in the history
This should help with latency issues which can happen when
using aggregation.

Cc: Felix Fietkau <nbd@openwrt.org>
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>
  • Loading branch information
Luis R. Rodriguez authored and John W. Linville committed Nov 24, 2010
1 parent c8b5760 commit 48124d1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions net/mac80211/rc80211_minstrel_ht.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,9 @@ minstrel_aggr_check(struct minstrel_priv *mp, struct ieee80211_sta *pubsta, stru
if (likely(sta->ampdu_mlme.tid_tx[tid]))
return;

if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO)
return;

ieee80211_start_tx_ba_session(pubsta, tid);
}

Expand Down

0 comments on commit 48124d1

Please sign in to comment.