Explorar el Código

qcacld-3.0: Avoid handling of CSA if roaming is in progress

Function lim_update_sta_run_time_ht_switch_chnl_params() will check
preauth condition, but it is not enough, as preauth will create a
new session with pe session with same vdev_id.

It should work in preauth condition, but not after preauth is done.
Replace the checking by function wlan_cm_is_vdev_roaming(). And
remove following lim_is_roam_synch_in_progress checking, as
wlan_cm_is_vdev_roaming checking already cover LFR2 and LFR3 both.

Change-Id: I06732ac7fdc98fe8eba438c4be50861ce8debe08
CRs-Fixed: 3080663
Yu Ouyang hace 3 años
padre
commit
edf221a94c
Se han modificado 1 ficheros con 3 adiciones y 7 borrados
  1. 3 7
      core/mac/src/pe/lim/lim_utils.c

+ 3 - 7
core/mac/src/pe/lim/lim_utils.c

@@ -77,6 +77,7 @@
 #include <lim_mlo.h>
 #endif
 #include "wlan_cmn_ieee80211.h"
+#include <wlan_cm_api.h>
 
 /** -------------------------------------------------------------
    \fn lim_delete_dialogue_token_list
@@ -3787,8 +3788,8 @@ void lim_update_sta_run_time_ht_switch_chnl_params(struct mac_context *mac,
 		return;
 	}
 
-	if (pe_session->ftPEContext.ftPreAuthSession) {
-		pe_err("FT PREAUTH channel change is in progress");
+	if (wlan_cm_is_vdev_roaming(pe_session->vdev)) {
+		pe_err("Roaming is in progress");
 		return;
 	}
 
@@ -3812,11 +3813,6 @@ void lim_update_sta_run_time_ht_switch_chnl_params(struct mac_context *mac,
 		return;
 	}
 
-	if (lim_is_roam_synch_in_progress(mac->psoc, pe_session)) {
-		pe_debug("Roaming in progress, ignore HT IE BW update");
-		return;
-	}
-
 	if (pe_session->htSecondaryChannelOffset !=
 	    (uint8_t) pHTInfo->secondaryChannelOffset
 	    || pe_session->htRecommendedTxWidthSet !=