Explorar el Código

qcacld-3.0: ignore Radar event if it's in CSA restart state

It may break the vdev MLME SM and lead to unexpected
behavior, if handling a new Radar event when the previous
one is still under processing.
To avoid that, ignore the new Radar event for SAP if it's
already in CSA restart state.

Change-Id: I98a77bb62133e8af660648583b0a2abda57121ab
CRs-Fixed: 3069540
Yu Wang hace 3 años
padre
commit
141a4592ae
Se han modificado 1 ficheros con 38 adiciones y 0 borrados
  1. 38 0
      core/sap/src/sap_api_link_cntl.c

+ 38 - 0
core/sap/src/sap_api_link_cntl.c

@@ -938,6 +938,38 @@ sap_check_and_process_go_force_ssc(struct sap_context *cur_sap_ctx)
 {}
 #endif
 
+/**
+ * sap_is_csa_restart_state() - check if sap is in csa restart state
+ * @psoc: PSOC object
+ * @sap_ctx: sap context to check
+ *
+ * Return: true if sap is in csa restart state
+ */
+static bool sap_is_csa_restart_state(struct wlan_objmgr_psoc *psoc,
+				     struct sap_context *sap_ctx)
+{
+	struct wlan_objmgr_vdev *vdev;
+	QDF_STATUS status;
+
+	if (!psoc || !sap_ctx) {
+		sap_err("Invalid params");
+		return false;
+	}
+
+	vdev = wlan_objmgr_get_vdev_by_id_from_psoc(psoc,
+						    sap_ctx->sessionId,
+						    WLAN_DFS_ID);
+	if (!vdev) {
+		sap_err("vdev is NULL for vdev_id: %u", sap_ctx->sessionId);
+		return false;
+	}
+
+	status = wlan_vdev_mlme_is_csa_restart(vdev);
+	wlan_objmgr_vdev_release_ref(vdev, WLAN_DFS_ID);
+
+	return QDF_IS_STATUS_SUCCESS(status);
+}
+
 QDF_STATUS wlansap_roam_callback(void *ctx,
 				 struct csr_roam_info *csr_roam_info,
 				 uint32_t roam_id,
@@ -1029,6 +1061,12 @@ QDF_STATUS wlansap_roam_callback(void *ctx,
 			goto EXIT;
 		}
 
+		if (sap_ctx->fsm_state == SAP_STARTED &&
+		    sap_is_csa_restart_state(mac_ctx->psoc, sap_ctx)) {
+			sap_debug("Ignore Radar event in csa restart state");
+			goto EXIT;
+		}
+
 		if (!sap_chan_bond_dfs_sub_chan(
 				sap_ctx, sap_ctx->chan_freq,
 				PHY_CHANNEL_BONDING_STATE_MAX)) {