Browse Source

qcacld-3.0: Add check for rf_test_mode to connect in MLO open mode

Add check for rf_test_mode to connect in MLO open mode

Change-Id: I41a62c56a42d2e734e6baae35c57bd1f3317f3ad
CRs-Fixed: 3611148
Aravind Kishore Sukla 1 year ago
parent
commit
0042f5db0e

+ 1 - 0
components/umac/mlme/connection_mgr/core/src/wlan_cm_vdev_connect.c

@@ -1209,6 +1209,7 @@ cm_get_ml_partner_info(struct wlan_objmgr_pdev *pdev,
 			 */
 			is_security_allowed =
 				wlan_cm_is_eht_allowed_for_current_security(
+							psoc,
 							part_scan_entry);
 			util_scan_free_cache_entry(part_scan_entry);
 			if (!is_security_allowed) {

+ 3 - 1
core/mac/src/pe/lim/lim_process_sme_req_messages.c

@@ -2117,7 +2117,9 @@ lim_get_bss_11be_mode_allowed(struct mac_context *mac_ctx,
 	 */
 	if (scan_entry) {
 		is_eht_allowed =
-			wlan_cm_is_eht_allowed_for_current_security(scan_entry);
+			wlan_cm_is_eht_allowed_for_current_security(
+					wlan_pdev_get_psoc(mac_ctx->pdev),
+					scan_entry);
 		util_scan_free_cache_entry(scan_entry);
 		if (!is_eht_allowed) {
 			pe_debug("Downgrade to 11ax mode due to AP security validation failure");