From: Johannes Berg Date: Tue, 12 Jul 2022 11:36:37 +0000 (+0200) Subject: wifi: mac80211: release channel context on link stop X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b048c98447fde83de9f9a2b0974aa1ffd931d012;p=linux.git wifi: mac80211: release channel context on link stop When a link is stopped for removal, release the channel context it may have. Signed-off-by: Johannes Berg --- diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c index 7410370c291b..3d485835dec2 100644 --- a/net/mac80211/iface.c +++ b/net/mac80211/iface.c @@ -420,6 +420,8 @@ static void ieee80211_link_stop(struct ieee80211_link_data *link) { if (link->sdata->vif.type == NL80211_IFTYPE_STATION) ieee80211_mgd_stop_link(link); + + ieee80211_link_release_channel(link); } struct link_container {