diff options
author | Johannes Berg <johannes.berg@intel.com> | 2023-06-19 15:26:48 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2023-06-21 14:01:28 +0200 |
commit | 5c1f97537bfb9f358e0ecc88c3c8a913c51944cb (patch) | |
tree | 76f71744d3ae346c12f610950c4882ed196878c6 /net/mac80211/ieee80211_i.h | |
parent | wifi: mac80211: drop some unprotected action frames (diff) | |
download | linux-5c1f97537bfb9f358e0ecc88c3c8a913c51944cb.tar.xz linux-5c1f97537bfb9f358e0ecc88c3c8a913c51944cb.zip |
wifi: mac80211: store BSS param change count from assoc response
When receiving a multi-link association response, make sure to
track the BSS parameter change count for each link, including
the assoc link.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Gregory Greenman <gregory.greenman@intel.com>
Link: https://lore.kernel.org/r/20230619161906.1799c164e7e9.I8e2c1f5eec6eec3fab525ae2dead9f6f099a2427@changeid
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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 2f7665998da0..91633a0b723e 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -951,6 +951,8 @@ struct ieee80211_link_data_managed { int wmm_last_param_set; int mu_edca_last_param_set; + u8 bss_param_ch_cnt; + struct cfg80211_bss *bss; }; |