diff options
author | Kyeyoon Park <kyeyoonp@qca.qualcomm.com> | 2013-12-17 02:01:30 -0500 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-12-19 10:29:22 -0500 |
commit | fa9ffc745610f31c6bc136d5a6a1782e00870e72 (patch) | |
tree | adb2799c4d6a78a95d291582a02c42027b2527c2 /net/wireless/sme.c | |
parent | 567ffc3509b2d3f965a49a18631d3da7f9a96d4f (diff) |
cfg80211: Add support for QoS mapping
This allows QoS mapping from external networks to be implemented as
defined in IEEE Std 802.11-2012, 10.24.9. APs can use this to advertise
DSCP ranges and exceptions for mapping frames to a specific UP over
Wi-Fi.
The payload of the QoS Map Set element (IEEE Std 802.11-2012, 8.4.2.97)
is sent to the driver through the new NL80211_ATTR_QOS_MAP attribute to
configure the local behavior either on the AP (based on local
configuration) or on a station (based on information received from the
AP).
Signed-off-by: Kyeyoon Park <kyeyoonp@qca.qualcomm.com>
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/sme.c')
-rw-r--r-- | net/wireless/sme.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/wireless/sme.c b/net/wireless/sme.c index 65f800890d70..3f64202358f4 100644 --- a/net/wireless/sme.c +++ b/net/wireless/sme.c | |||
@@ -870,6 +870,8 @@ void __cfg80211_disconnected(struct net_device *dev, const u8 *ie, | |||
870 | for (i = 0; i < 6; i++) | 870 | for (i = 0; i < 6; i++) |
871 | rdev_del_key(rdev, dev, i, false, NULL); | 871 | rdev_del_key(rdev, dev, i, false, NULL); |
872 | 872 | ||
873 | rdev_set_qos_map(rdev, dev, NULL); | ||
874 | |||
873 | #ifdef CONFIG_CFG80211_WEXT | 875 | #ifdef CONFIG_CFG80211_WEXT |
874 | memset(&wrqu, 0, sizeof(wrqu)); | 876 | memset(&wrqu, 0, sizeof(wrqu)); |
875 | wrqu.ap_addr.sa_family = ARPHRD_ETHER; | 877 | wrqu.ap_addr.sa_family = ARPHRD_ETHER; |