aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/sta_info.h
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2012-12-27 12:55:36 -0500
committerJohannes Berg <johannes.berg@intel.com>2013-02-15 03:41:32 -0500
commit0af83d3df5863224336a18c24a14fda542b712f5 (patch)
treefa6a365edab208a78941ef80084afc0aaca87813 /net/mac80211/sta_info.h
parent8921d04e8df7475d733d853564bdb001e83bf33f (diff)
mac80211: handle VHT operating mode notification
Handle the operating mode notification action frame. When the supported streams or the bandwidth change let the driver and rate control algorithm know. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r--net/mac80211/sta_info.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h
index 03c42f8d39f0..63dfdb5e91da 100644
--- a/net/mac80211/sta_info.h
+++ b/net/mac80211/sta_info.h
@@ -297,6 +297,8 @@ struct sta_ampdu_mlme {
297 * @sta_state: duplicates information about station state (for debug) 297 * @sta_state: duplicates information about station state (for debug)
298 * @beacon_loss_count: number of times beacon loss has triggered 298 * @beacon_loss_count: number of times beacon loss has triggered
299 * @rcu_head: RCU head used for freeing this station struct 299 * @rcu_head: RCU head used for freeing this station struct
300 * @cur_max_bandwidth: maximum bandwidth to use for TX to the station,
301 * taken from HT/VHT capabilities or VHT operating mode notification
300 */ 302 */
301struct sta_info { 303struct sta_info {
302 /* General information, mostly static */ 304 /* General information, mostly static */
@@ -398,6 +400,8 @@ struct sta_info {
398 } debugfs; 400 } debugfs;
399#endif 401#endif
400 402
403 enum ieee80211_sta_rx_bandwidth cur_max_bandwidth;
404
401 unsigned int lost_packets; 405 unsigned int lost_packets;
402 unsigned int beacon_loss_count; 406 unsigned int beacon_loss_count;
403 407