diff options
author | Johannes Berg | 2022-09-21 23:01:46 +0200 |
---|---|---|
committer | Greg Kroah-Hartman | 2022-12-31 13:32:01 +0100 |
commit | 8f8e5ca4e0387fa8f5fdb6024de09016108429b4 (patch) | |
tree | 63288c876303e20571278b900b51c717d8402736 /net/mac80211/ieee80211_i.h | |
parent | bb7743955a929e44b308cc3f63f8cc03873c1bee (diff) |
wifi: mac80211: check link ID in auth/assoc continuation
[ Upstream commit 85176a3fcd9748558cff72d4cdff5465b8732282 ]
Ensure that the link ID matches in auth/assoc continuation,
otherwise we need to reset all the data.
Fixes: 81151ce462e5 ("wifi: mac80211: support MLO authentication/association with one link")
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index a842f2e1c230..de7b8a4d4bbb 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -390,6 +390,7 @@ struct ieee80211_mgd_auth_data { bool done, waiting; bool peer_confirmed; bool timeout_started; + int link_id; u8 ap_addr[ETH_ALEN] __aligned(2); |