diff options
author | Johannes Berg <[email protected]> | 2024-02-28 09:55:48 +0100 |
---|---|---|
committer | Johannes Berg <[email protected]> | 2024-03-04 14:34:05 +0100 |
commit | 07fba2277fcedd0948bec657f76ef374d0157d93 (patch) | |
tree | ae5473fb02d8ba2a814854fab0b960227eeec208 | |
parent | 85977fc0aa489420709779cbc859966db94be68f (diff) |
wifi: mac80211: remove TDLS peers on link deactivation
If a link is deactivated, we really cannot sustain any
TDLS connections on that link any more. With the API
now changed, fix this issue and remove TDLS connections.
Reviewed-by: Miriam Rachel Korenblit <[email protected]>
Reviewed-by: Emmanuel Grumbach <[email protected]>
Link: https://msgid.link/20240228095719.a7dd812c37bf.I3474dbde79e9e7a539d47f6f81f32e6c3e459080@changeid
Signed-off-by: Johannes Berg <[email protected]>
-rw-r--r-- | net/mac80211/link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/link.c b/net/mac80211/link.c index 87a413374ece..685ec66b4264 100644 --- a/net/mac80211/link.c +++ b/net/mac80211/link.c @@ -356,7 +356,7 @@ static int _ieee80211_set_active_links(struct ieee80211_sub_if_data *sdata, link = sdata_dereference(sdata->link[link_id], sdata); - /* FIXME: kill TDLS connections on the link */ + ieee80211_teardown_tdls_peers(link); ieee80211_link_release_channel(link); } |