Ver código fonte

qcacld-3.0: Move STA vdev to UP state after add sta is success

STA vdev is moved to UP state in wma_add_sta_req_sta_mode but
if deauth is received from AP during that time the connection
is set to failure in lim_process_sta_mlm_add_sta_rsp and driver
send EV_CONNECTION_FAIL in UP state which is not handled.

To fix this move the STA to UP state only if
lim_handle_sme_join_result receive the add sta rsp success.

Change-Id: Icb0685e52881563e17785c98e9e225796a864be1
CRs-Fixed: 2415194
Abhishek Singh 6 anos atrás
pai
commit
24828ad756

+ 5 - 1
core/mac/src/pe/lim/lim_process_mlm_rsp_messages.c

@@ -1384,11 +1384,15 @@ void lim_handle_sme_join_result(struct mac_context *mac_ctx,
 		pe_err("session is NULL");
 		return;
 	}
-	if (result_code == eSIR_SME_SUCCESS)
+	if (result_code == eSIR_SME_SUCCESS) {
+		wlan_vdev_mlme_sm_deliver_evt(session->vdev,
+					      WLAN_VDEV_SM_EV_START_SUCCESS,
+					      0, NULL);
 		return lim_send_sme_join_reassoc_rsp(mac_ctx, eWNI_SME_JOIN_RSP,
 						     result_code,
 						     prot_status_code, session,
 						     session->smeSessionId);
+	}
 
 	param.result_code = result_code;
 	param.prot_status_code = prot_status_code;

+ 8 - 0
core/mac/src/pe/lim/lim_utils.c

@@ -1925,6 +1925,14 @@ void lim_disconnect_complete(struct pe_session *session, bool del_bss)
 	QDF_STATUS status;
 	struct mac_context *mac = session->mac_ctx;
 
+	if (wlan_vdev_mlme_get_substate(session->vdev) ==
+	    WLAN_VDEV_SS_STOP_STOP_PROGRESS) {
+		status = wlan_vdev_mlme_sm_deliver_evt(session->vdev,
+						       WLAN_VDEV_SM_EV_STOP_REQ,
+						       sizeof(*session),
+						       session);
+		return;
+	}
 	status =
 	   wlan_vdev_mlme_sm_deliver_evt(session->vdev,
 					 WLAN_VDEV_SM_EV_DISCONNECT_COMPLETE,

+ 1 - 3
core/wma/src/wma_dev_if.c

@@ -5530,9 +5530,7 @@ static inline QDF_STATUS wma_indicate_start_success(tp_wma_handle wma,
 						    struct wma_txrx_node *iface,
 						    tpAddStaParams params)
 {
-	return wlan_vdev_mlme_sm_deliver_evt(iface->vdev,
-					     WLAN_VDEV_SM_EV_START_SUCCESS,
-					     0, NULL);
+	return QDF_STATUS_SUCCESS;
 }
 #else
 static QDF_STATUS wma_indicate_start_success(tp_wma_handle wma,