From: Pradeep Kumar Chitrapu Date: Tue, 28 May 2019 23:36:16 +0000 (-0700) Subject: mac80211: free peer keys before vif down in mesh X-Git-Tag: v5.1.18~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6017f0892221ee66cdf189664ae3ef644d1d7d75;p=thirdparty%2Fkernel%2Fstable.git mac80211: free peer keys before vif down in mesh [ Upstream commit 0112fa557c3bb3a002bc85760dc3761d737264d3 ] freeing peer keys after vif down is resulting in peer key uninstall to fail due to interface lookup failure. so fix that. Signed-off-by: Pradeep Kumar Chitrapu Signed-off-by: Johannes Berg Signed-off-by: Sasha Levin --- diff --git a/net/mac80211/mesh.c b/net/mac80211/mesh.c index d5aba5029cb00..fe44f0d98de02 100644 --- a/net/mac80211/mesh.c +++ b/net/mac80211/mesh.c @@ -929,6 +929,7 @@ void ieee80211_stop_mesh(struct ieee80211_sub_if_data *sdata) /* flush STAs and mpaths on this iface */ sta_info_flush(sdata); + ieee80211_free_keys(sdata, true); mesh_path_flush_by_iface(sdata); /* stop the beacon */