1ENUM IEEE80211_RATE_(9) Rate control interface ENUM IEEE80211_RATE_(9)
2
3
4
6 enum_ieee80211_rate_control_changed - flags to indicate what changed
7
9 enum ieee80211_rate_control_changed {
10 IEEE80211_RC_BW_CHANGED,
11 IEEE80211_RC_SMPS_CHANGED,
12 IEEE80211_RC_SUPP_RATES_CHANGED,
13 IEEE80211_RC_NSS_CHANGED
14 };
15
17 IEEE80211_RC_BW_CHANGED
18 The bandwidth that can be used to transmit to this station changed.
19 The actual bandwidth is in the station information -- for HT20/40
20 the IEEE80211_HT_CAP_SUP_WIDTH_20_40 flag changes, for HT and VHT
21 the bandwidth field changes.
22
23 IEEE80211_RC_SMPS_CHANGED
24 The SMPS state of the station changed.
25
26 IEEE80211_RC_SUPP_RATES_CHANGED
27 The supported rate set of this peer changed (in IBSS mode) due to
28 discovering more information about the peer.
29
30 IEEE80211_RC_NSS_CHANGED
31 N_SS (number of spatial streams) was changed by the peer
32
34 Johannes Berg <johannes@sipsolutions.net>
35 Author.
36
38Kernel Hackers Manual 3.10 June 2019 ENUM IEEE80211_RATE_(9)