Forráskód Böngészése

qcacld-3.0: Check whether MLO CSA allowed

SCC links in same MLD is not allowed, add check when STA handle CSA.

CRs-Fixed: 3722988
Change-Id: Id8dd8658fc6fa1c593b9c5734dc727505d353a05
Jianmin Zhu 1 éve
szülő
commit
2f7a74b80b
1 módosított fájl, 18 hozzáadás és 0 törlés
  1. 18 0
      core/mac/src/pe/lim/lim_send_sme_rsp_messages.c

+ 18 - 0
core/mac/src/pe/lim/lim_send_sme_rsp_messages.c

@@ -59,6 +59,7 @@
 #include <../../core/src/wlan_cm_vdev_api.h>
 #include <wlan_mlo_mgr_sta.h>
 #include <spatial_reuse_api.h>
+#include <wlan_mlo_mgr_cmn.h>
 
 void lim_send_sme_rsp(struct mac_context *mac_ctx, uint16_t msg_type,
 		      tSirResultCodes result_code, uint8_t vdev_id)
@@ -1932,6 +1933,12 @@ static void update_csa_link_info(struct wlan_objmgr_vdev *vdev,
 		 vdev_id, link_id);
 }
 
+static bool
+lim_mlo_is_csa_allow(struct wlan_objmgr_vdev *vdev, uint16_t csa_freq)
+{
+	return wlan_mlo_is_csa_allow(vdev, csa_freq);
+}
+
 #else
 static void lim_set_csa_chan_param_11be(struct pe_session *session,
 					struct csa_offload_params *csa_param,
@@ -1960,6 +1967,11 @@ static void update_csa_link_info(struct wlan_objmgr_vdev *vdev,
 {
 }
 
+static bool
+lim_mlo_is_csa_allow(struct wlan_objmgr_vdev *vdev, uint16_t csa_freq)
+{
+	return true;
+}
 #endif
 
 /**
@@ -2053,6 +2065,12 @@ void lim_handle_sta_csa_param(struct mac_context *mac_ctx,
 		pe_debug("Channel switch is not allowed");
 		goto err;
 	}
+
+	if (!lim_mlo_is_csa_allow(session_entry->vdev,
+				  csa_params->csa_chan_freq)) {
+		pe_debug("Channel switch for MLO vdev is not allowed");
+		goto err;
+	}
 	/*
 	 * on receiving channel switch announcement from AP, delete all
 	 * TDLS peers before leaving BSS and proceed for channel switch