aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mlme.c
diff options
context:
space:
mode:
authorAlexander Bondar <alexander.bondar@intel.com>2013-04-02 08:30:14 -0400
committerJohannes Berg <johannes.berg@intel.com>2013-04-08 05:05:45 -0400
commit24aa11ab8ae03292d38ec0dbd9bc2ac49fe8a6dd (patch)
treea8cff6906873a33f8f3d4eb36cff00e54623b987 /net/mac80211/mlme.c
parentb2c0958b203784659e230bde6bd553d7c37bb4d2 (diff)
mac80211: disable uAPSD if all ACs are under ACM
It's unlikely that an AP requires WMM mandatory admission control for all access categories, and if it does then we still transmit on the background AC without requesting admission. However, avoid using uAPSD in this case since the implementation could run into issues and might use other ACs etc. Signed-off-by: Alexander Bondar <alexander.bondar@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r--net/mac80211/mlme.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index 304d6cfc6250..43bfa8199811 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -4086,7 +4086,8 @@ int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
4086 rcu_read_unlock(); 4086 rcu_read_unlock();
4087 4087
4088 if (bss->wmm_used && bss->uapsd_supported && 4088 if (bss->wmm_used && bss->uapsd_supported &&
4089 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)) { 4089 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD) &&
4090 sdata->wmm_acm != 0xff) {
4090 assoc_data->uapsd = true; 4091 assoc_data->uapsd = true;
4091 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED; 4092 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4092 } else { 4093 } else {