Эх сурвалжийг харах

qcacld-3.0: Fix race between vdev_stop and update_11k_offload

Currently, host sends 11k offload command to FW as part of RSO Start
and 11k offload disables to FW during RSO Stop. In case of STA+STA
concurrency, Host sends vdev_stop before 11k_deconfig for
currently enabled STA results to assert in FW.

In order to configure 11k for second STA without assertion, Driver
should de-config 11k for currently enabled STA before vdev stop/delete.

Fix is to configure 11k while start roaming and de-configure 11k
while stop roaming irrespective of the reason for roaming STOP.

Change-Id: I0915d8a0141194c331eb59ba0f2dfa9c8995628a
CRs-Fixed: 2449431
Abhinav Kumar 5 жил өмнө
parent
commit
c4a6c30750

+ 2 - 0
core/sme/src/common/sme_api.c

@@ -6488,6 +6488,8 @@ QDF_STATUS sme_stop_roaming(mac_handle_t mac_handle, uint8_t session_id,
 	else
 		csr_roam_reset_roam_params(mac_ctx);
 
+	req->offload_11k_params.offload_11k_bitmask = 0;
+
 	wma_msg.type = WMA_ROAM_SCAN_OFFLOAD_REQ;
 	wma_msg.bodyptr = req;
 

+ 2 - 4
core/sme/src/csr/csr_api_roam.c

@@ -19928,11 +19928,9 @@ csr_roam_offload_scan(struct mac_context *mac_ctx, uint8_t session_id,
 	 * 11k offload is enabled during RSO Start after connect indication and
 	 * 11k offload is disabled during RSO Stop after disconnect indication
 	 */
-	if (command == ROAM_SCAN_OFFLOAD_START &&
-	    reason == REASON_CTX_INIT)
+	if (command == ROAM_SCAN_OFFLOAD_START)
 		csr_update_11k_offload_params(mac_ctx, session, req_buf, TRUE);
-	else if (command == ROAM_SCAN_OFFLOAD_STOP &&
-		 reason == REASON_DISCONNECTED)
+	else if (command == ROAM_SCAN_OFFLOAD_STOP)
 		csr_update_11k_offload_params(mac_ctx, session, req_buf, FALSE);
 
 	QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_DEBUG,

+ 6 - 7
core/wma/src/wma_scan_roam.c

@@ -1841,14 +1841,13 @@ QDF_STATUS wma_process_roaming_config(tp_wma_handle wma_handle,
 		/*
 		 * Send 11k offload disable command to FW as part of RSO Stop
 		 */
-		if (roam_req->reason == REASON_DISCONNECTED) {
-			qdf_status = wma_send_offload_11k_params(wma_handle,
+		qdf_status =
+		    wma_send_offload_11k_params(wma_handle,
 						&roam_req->offload_11k_params);
-			if (qdf_status != QDF_STATUS_SUCCESS) {
-				WMA_LOGE("11k offload disable not sent, status %d",
-					 qdf_status);
-				break;
-			}
+		if (QDF_IS_STATUS_ERROR(qdf_status)) {
+			WMA_LOGE("11k offload disable not sent, status %d",
+				 qdf_status);
+			break;
 		}
 
 		/* Send BTM config as disabled during RSO Stop */