From: Johannes Berg Date: Wed, 31 Jan 2024 15:48:23 +0000 (+0100) Subject: wifi: mac80211: adding missing drv_mgd_complete_tx() call X-Git-Tag: v6.6.19~206 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=415f8e9854bb0e0582de83257b56ceac6014282b;p=thirdparty%2Fkernel%2Fstable.git wifi: mac80211: adding missing drv_mgd_complete_tx() call [ Upstream commit c042600c17d8c490279f0ae2baee29475fe8047d ] There's a call to drv_mgd_prepare_tx() and so there should be one to drv_mgd_complete_tx(), but on this path it's not. Add it. Link: https://msgid.link/20240131164824.2f0922a514e1.I5aac89b93bcead88c374187d70cad0599d29d2c8@changeid Signed-off-by: Johannes Berg Signed-off-by: Sasha Levin --- diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index d9e716f38b0e9..c6044ab4e7fc1 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -7800,6 +7800,7 @@ int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), true, req->reason_code, false); + drv_mgd_complete_tx(sdata->local, sdata, &info); return 0; }