]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
wifi: iwlwifi: mvm: don't skip link selection
authorMiri Korenblit <miriam.rachel.korenblit@intel.com>
Sun, 12 May 2024 12:24:59 +0000 (15:24 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 3 Aug 2024 06:59:33 +0000 (08:59 +0200)
[ Upstream commit 46144103ace2863e26f4e911aa45200753b7dbca ]

If we exit EMLSR due to a IWL_MVM_ESR_EXIT*, a MLO scan followed by a
link selection is scheduled with a delay of 30 seconds.
If during that 30 seconds EMLSR was blocked and unblocked
(IWL_MVM_ESR_BLOCKED*), we would still want to get the needed data from
the MLO scan and select link accordingly, and not return immediately to
EMLSR.

Fixes: 2f33561ea8f9 ("wifi: iwlwifi: mvm: trigger link selection after exiting EMLSR")
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Reviewed-by: Johannes Berg <johannes.berg@intel.com>
Link: https://msgid.link/20240512152312.caab27a8dd8f.I63f67e213d5e05416f71513a8d914917d59aa44f@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/wireless/intel/iwlwifi/mvm/link.c

index 6ec9a8e21a34ee024f2475b19cc91f2f191ffa05..b4a4d25b31cd20acb4b9cb26da407115ebed575c 100644 (file)
@@ -1082,6 +1082,13 @@ static void iwl_mvm_esr_unblocked(struct iwl_mvm *mvm,
 
        IWL_DEBUG_INFO(mvm, "EMLSR is unblocked\n");
 
+       /* We exited due to an EXIT reason, so MLO scan was scheduled already */
+       if (mvmvif->last_esr_exit.reason &&
+           !(mvmvif->last_esr_exit.reason & IWL_MVM_BLOCK_ESR_REASONS)) {
+               IWL_DEBUG_INFO(mvm, "Wait for MLO scan\n");
+               return;
+       }
+
        /*
         * If EMLSR was blocked for more than 30 seconds, or the last link
         * selection decided to not enter EMLSR, trigger a new scan.