diff options
author | Kyeyoon Park <kyeyoonp@qca.qualcomm.com> | 2013-12-17 02:04:43 -0500 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-12-19 10:30:58 -0500 |
commit | 32db6b54dfba38aa8fa4072b2a3fc6425139166a (patch) | |
tree | c77a6ad79daa65aa4ff186bdfc02e836be8e2254 /net/mac80211/ieee80211_i.h | |
parent | fa9ffc745610f31c6bc136d5a6a1782e00870e72 (diff) |
mac80211: Add support for QoS mapping
Implement set_qos_map() handler for mac80211 to enable QoS mapping
functionality.
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/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 7785afbd222d..953b9e294547 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h | |||
@@ -694,6 +694,11 @@ struct ieee80211_chanctx { | |||
694 | struct ieee80211_chanctx_conf conf; | 694 | struct ieee80211_chanctx_conf conf; |
695 | }; | 695 | }; |
696 | 696 | ||
697 | struct mac80211_qos_map { | ||
698 | struct cfg80211_qos_map qos_map; | ||
699 | struct rcu_head rcu_head; | ||
700 | }; | ||
701 | |||
697 | struct ieee80211_sub_if_data { | 702 | struct ieee80211_sub_if_data { |
698 | struct list_head list; | 703 | struct list_head list; |
699 | 704 | ||
@@ -739,6 +744,7 @@ struct ieee80211_sub_if_data { | |||
739 | int encrypt_headroom; | 744 | int encrypt_headroom; |
740 | 745 | ||
741 | struct ieee80211_tx_queue_params tx_conf[IEEE80211_NUM_ACS]; | 746 | struct ieee80211_tx_queue_params tx_conf[IEEE80211_NUM_ACS]; |
747 | struct mac80211_qos_map __rcu *qos_map; | ||
742 | 748 | ||
743 | struct work_struct csa_finalize_work; | 749 | struct work_struct csa_finalize_work; |
744 | int csa_counter_offset_beacon; | 750 | int csa_counter_offset_beacon; |