Browse Source

qcacld-3.0: Send RSO stop when roam auth status is connected

When firmware sends Roam synch indication, driver changes the
roam offload state to ROAM_INIT and after set key completion is
received, RSO start will be sent. But if EAP/EAPOL fails and
disconnection is triggered then deinit command is sent without
setting roam scan mode to 0 with RSO stop command.

So change roam offload state to RSO_STOPPED if auth status is
connected in roam synch indication.

Change-Id: If8f56ce48500f6848fa917854b6252f8deb67c01
CRs-Fixed: 3005697
Pragaspathi Thilagaraj 3 years ago
parent
commit
e8aac242d4
1 changed files with 10 additions and 4 deletions
  1. 10 4
      components/umac/mlme/connection_mgr/core/src/wlan_cm_roam_fw_sync.c

+ 10 - 4
components/umac/mlme/connection_mgr/core/src/wlan_cm_roam_fw_sync.c

@@ -921,12 +921,18 @@ QDF_STATUS cm_fw_roam_complete(struct cnx_mgr *cm_ctx, void *data)
 		/*
 		 * STA is just in associated state here, RSO
 		 * enable will be sent once EAP & EAPOL will be done by
-		 * user-space and after set key response
-		 * is received.
+		 * user-space and after set key response is received.
+		 *
+		 * When firmware roaming state is connected, EAP/EAPOL will be
+		 * done at the supplicant. If EAP/EAPOL fails and supplicant
+		 * sends disconnect, then the RSO state machine sends
+		 * deinit directly to firmware without RSO stop with roam
+		 * scan mode value 0. So to avoid this move state to RSO
+		 * stop.
 		 */
 		wlan_cm_roam_state_change(pdev, vdev_id,
-					  WLAN_ROAM_INIT,
-					  REASON_CONNECT);
+					  WLAN_ROAM_RSO_STOPPED,
+					  REASON_DISCONNECTED);
 end:
 	return status;
 }