Browse Source

qcacld-3.0: Fix SAP DFS channel switch failure

If the SAP is moved to DFS channel on 5G by Pre-CAC SAP interface,
Pre-CAC interface will be stopped but not deleted. Then the
driver will have two sap context objects. When the Radar event
comes to SAP interface, the existing APIs
(like sap_is_conc_sap_doing_scc_dfs) will still check Pre-CAC SAP
context to get concurrency status without checking Pre-CAC SAP's
status even though the Pre-CAC SAP is inactive. It will get wrong
result and finally cause the current SAP stuck in Radar detected
DFS channel.
Fix by check sap_context state active or not in sap concurrency
check API.

Change-Id: I5adf9e6a3ac7b45983fb627c99d9d92fe5815751
CRs-Fixed: 3127425
Liangwei Dong 3 years ago
parent
commit
4fc0500019
1 changed files with 20 additions and 0 deletions
  1. 20 0
      core/sap/src/sap_fsm.c

+ 20 - 0
core/sap/src/sap_fsm.c

@@ -4447,6 +4447,17 @@ QDF_STATUS sap_init_dfs_channel_nol_list(struct sap_context *sap_ctx)
 	return QDF_STATUS_SUCCESS;
 }
 
+/**
+ * sap_is_active() - Check SAP active or not by sap_context object
+ * @sap_ctx: Pointer to the SAP context
+ *
+ * Return: true if SAP is active
+ */
+static bool sap_is_active(struct sap_context *sap_ctx)
+{
+	return sap_ctx->fsm_state != SAP_INIT;
+}
+
 /*
  * This function will calculate how many interfaces
  * have sap persona and returns total number of sap persona.
@@ -4456,12 +4467,17 @@ uint8_t sap_get_total_number_sap_intf(mac_handle_t mac_handle)
 	struct mac_context *mac = MAC_CONTEXT(mac_handle);
 	uint8_t intf = 0;
 	uint8_t intf_count = 0;
+	struct sap_context *sap_context;
 
 	for (intf = 0; intf < SAP_MAX_NUM_SESSION; intf++) {
 		if (((QDF_SAP_MODE == mac->sap.sapCtxList[intf].sapPersona)
 		    ||
 		    (QDF_P2P_GO_MODE == mac->sap.sapCtxList[intf].sapPersona))
 		    && mac->sap.sapCtxList[intf].sap_context) {
+			sap_context =
+				mac->sap.sapCtxList[intf].sap_context;
+			if (!sap_is_active(sap_context))
+				continue;
 			intf_count++;
 		}
 	}
@@ -4494,6 +4510,8 @@ bool is_concurrent_sap_ready_for_channel_change(mac_handle_t mac_handle,
 		    && mac->sap.sapCtxList[intf].sap_context) {
 			sap_context =
 				mac->sap.sapCtxList[intf].sap_context;
+			if (!sap_is_active(sap_context))
+				continue;
 			if (sap_context == sap_ctx) {
 				sap_err("sapCtx matched [%pK]", sap_ctx);
 				continue;
@@ -4544,6 +4562,8 @@ bool sap_is_conc_sap_doing_scc_dfs(mac_handle_t mac_handle,
 		if (!mac->sap.sapCtxList[intf].sap_context)
 			continue;
 		sap_ctx = mac->sap.sapCtxList[intf].sap_context;
+		if (!sap_is_active(sap_ctx))
+			continue;
 		/* if same SAP contexts then skip to next context */
 		if (sap_ctx == given_sapctx)
 			continue;