From: Johannes Berg Date: Wed, 28 Feb 2024 08:55:48 +0000 (+0100) Subject: wifi: mac80211: remove TDLS peers on link deactivation X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=07fba2277fcedd0948bec657f76ef374d0157d93;p=linux.git 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 Reviewed-by: Emmanuel Grumbach Link: https://msgid.link/20240228095719.a7dd812c37bf.I3474dbde79e9e7a539d47f6f81f32e6c3e459080@changeid Signed-off-by: Johannes Berg --- diff --git a/net/mac80211/link.c b/net/mac80211/link.c index 87a413374ecee..685ec66b42642 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); }