diff options
author | Arik Nemtsov <arik@wizery.com> | 2012-06-18 10:43:50 +0300 |
---|---|---|
committer | Zefan Li <lizefan@huawei.com> | 2015-06-19 11:40:25 +0800 |
commit | 1a19f7fa25f62c74503c461a9a793547d4a4a74e (patch) | |
tree | 326210845c4fb3d164368ed0cc7747ffa659559c | |
parent | 590f3a306dc71ffa6d2c9ea564e49f59c9b5a8d8 (diff) | |
download | lwn-1a19f7fa25f62c74503c461a9a793547d4a4a74e.tar.gz lwn-1a19f7fa25f62c74503c461a9a793547d4a4a74e.zip |
mac80211: set only VO as a U-APSD enabled AC
commit d6a4ed6fe0a0d4790941e7f13e56630b8b9b053d upstream.
Some APs experience problems when working with U-APSD. Decrease the
probability of that happening by using legacy mode for all ACs but VO.
The AP that caused us troubles was a Cisco 4410N. It ignores our
setting, and always treats non-VO ACs as legacy.
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Zefan Li <lizefan@huawei.com>
-rw-r--r-- | net/mac80211/ieee80211_i.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 226be1364ef3..f5a0a96b3978 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -54,11 +54,14 @@ struct ieee80211_local; #define TU_TO_EXP_TIME(x) (jiffies + usecs_to_jiffies((x) * 1024)) +/* + * Some APs experience problems when working with U-APSD. Decrease the + * probability of that happening by using legacy mode for all ACs but VO. + * The AP that caused us trouble was a Cisco 4410N. It ignores our + * setting, and always treats non-VO ACs as legacy. + */ #define IEEE80211_DEFAULT_UAPSD_QUEUES \ - (IEEE80211_WMM_IE_STA_QOSINFO_AC_BK | \ - IEEE80211_WMM_IE_STA_QOSINFO_AC_BE | \ - IEEE80211_WMM_IE_STA_QOSINFO_AC_VI | \ - IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) + IEEE80211_WMM_IE_STA_QOSINFO_AC_VO #define IEEE80211_DEFAULT_MAX_SP_LEN \ IEEE80211_WMM_IE_STA_QOSINFO_SP_ALL |