@@ -1443,6 +1443,7 @@ enum monitor_flags {
1443
1443
* @MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
1444
1444
* @MPATH_INFO_FLAGS: @flags filled
1445
1445
* @MPATH_INFO_HOP_COUNT: @hop_count filled
1446
+ * @MPATH_INFO_PATH_CHANGE: @path_change_count filled
1446
1447
*/
1447
1448
enum mpath_info_flags {
1448
1449
MPATH_INFO_FRAME_QLEN = BIT (0 ),
@@ -4609,6 +4610,17 @@ struct cfg80211_cqm_config;
4609
4610
* @mesh_id_len: (private) Used by the internal configuration code
4610
4611
* @mesh_id_up_len: (private) Used by the internal configuration code
4611
4612
* @wext: (private) Used by the internal wireless extensions compat code
4613
+ * @wext.ibss: (private) IBSS data part of wext handling
4614
+ * @wext.connect: (private) connection handling data
4615
+ * @wext.keys: (private) (WEP) key data
4616
+ * @wext.ie: (private) extra elements for association
4617
+ * @wext.ie_len: (private) length of extra elements
4618
+ * @wext.bssid: (private) selected network BSSID
4619
+ * @wext.ssid: (private) selected network SSID
4620
+ * @wext.default_key: (private) selected default key index
4621
+ * @wext.default_mgmt_key: (private) selected default management key index
4622
+ * @wext.prev_bssid: (private) previous BSSID for reassociation
4623
+ * @wext.prev_bssid_valid: (private) previous BSSID validity
4612
4624
* @use_4addr: indicates 4addr mode is used on this interface, must be
4613
4625
* set by driver (if supported) on add_interface BEFORE registering the
4614
4626
* netdev and may otherwise be used by driver read-only, will be update
@@ -4708,7 +4720,8 @@ struct wireless_dev {
4708
4720
struct cfg80211_cached_keys * keys ;
4709
4721
const u8 * ie ;
4710
4722
size_t ie_len ;
4711
- u8 bssid [ETH_ALEN ], prev_bssid [ETH_ALEN ];
4723
+ u8 bssid [ETH_ALEN ];
4724
+ u8 prev_bssid [ETH_ALEN ];
4712
4725
u8 ssid [IEEE80211_MAX_SSID_LEN ];
4713
4726
s8 default_key , default_mgmt_key ;
4714
4727
bool prev_bssid_valid ;
0 commit comments