Browse Source

qcacld-3.0: Check if need restart SAP when CAC END

Currently if CAC in progress, it prevent SAP restart happen, if there
is some event like set band command come during CAC wait time, it is
not possible to restart SAP even after CAC END.

Change I54663bdd887e3d591d7fd9ee7ce76572b1ef21f7 moved
check_concurrent_intf to SAP interface manager, which will not invoke
when CAC END, so add policy_mgr_check_concurrent_intf_and_restart_sap
in sap_cac_end_notify().

Change-Id: Ida370804d0c7145b750c9dad5c169b74f9c37cd6
CRs-Fixed: 3586509
Will Huang 1 year ago
parent
commit
3375882129
1 changed files with 10 additions and 0 deletions
  1. 10 0
      core/sap/src/sap_fsm.c

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

@@ -2978,6 +2978,7 @@ QDF_STATUS sap_cac_end_notify(mac_handle_t mac_handle,
 	uint8_t intf;
 	struct mac_context *mac = MAC_CONTEXT(mac_handle);
 	QDF_STATUS qdf_status = QDF_STATUS_E_FAILURE;
+	bool is_acs;
 
 	/*
 	 * eSAP_DFS_CHANNEL_CAC_END:
@@ -3050,6 +3051,15 @@ QDF_STATUS sap_cac_end_notify(mac_handle_t mac_handle,
 					 intf);
 				return qdf_status;
 			}
+
+			/*
+			 * CAC wait prevent SAP restart, check if need
+			 * restart SAP after CAC end
+			 */
+			is_acs = sap_context->acs_cfg &&
+				 sap_context->acs_cfg->acs_mode;
+			policy_mgr_check_concurrent_intf_and_restart_sap(mac->psoc,
+									 is_acs);
 		}
 	}