aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/sta_info.h
diff options
context:
space:
mode:
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