Преглед на файлове

qcacld-3.0: Send LINK_DOWN event to CM upon MLO to legacy roaming

Host driver creates two vdev as part of initial connection.
If the connected AP supports MLO, both(sta and link) of the vdevs
would be moved to UP state.
Firmware sends roam sync indication to host when it roams to a
new AP. The event carries new AP info and the new AP could be
legacy AP. If the current AP is MLO and new(roamed) AP is non-MLO
AP, move the link vdev state to INIT as it's in UP state.

Change-Id: Idd9638ea446306b0309e5127f08e3dbc1ec9edc2
CRs-Fixed: 3106038
Srinivas Dasari преди 3 години
родител
ревизия
071e0d2559

+ 14 - 1
components/umac/mlme/connection_mgr/dispatcher/src/wlan_cm_roam_api.c

@@ -3276,5 +3276,18 @@ rel_ref:
 QDF_STATUS
 cm_cleanup_mlo_link(struct wlan_objmgr_vdev *vdev)
 {
-	return QDF_STATUS_SUCCESS;
+	QDF_STATUS status;
+
+	/* Use internal disconnect as this is for cleanup and no need
+	 * to inform OSIF, and REASON_FW_TRIGGERED_ROAM_FAILURE will
+	 * cleanup host without informing the FW
+	 */
+	status = wlan_cm_disconnect(vdev,
+				    CM_INTERNAL_DISCONNECT,
+				    REASON_FW_TRIGGERED_ROAM_FAILURE,
+				    NULL);
+	if (QDF_IS_STATUS_ERROR(status))
+		mlme_debug("Failed to post disconnect for link vdev");
+
+	return status;
 }

+ 1 - 1
components/umac/mlme/mlo_mgr/src/wlan_mlo_mgr_roam.c

@@ -92,7 +92,7 @@ mlo_cleanup_link(struct wlan_objmgr_vdev *tmp_vdev,
 					   WLAN_VDEV_FEXT2_MLO);
 
 	if (wlan_vdev_mlme_is_mlo_link_vdev(tmp_vdev)) {
-		//cm_cleanup_mlo_link(tmp_vdev);
+		cm_cleanup_mlo_link(tmp_vdev);
 		wlan_vdev_mlme_feat_ext2_cap_clear(tmp_vdev,
 				WLAN_VDEV_FEXT2_MLO_STA_LINK);
 	}

+ 2 - 1
core/mac/src/pe/lim/lim_process_sme_req_messages.c

@@ -4162,7 +4162,8 @@ static void lim_process_nb_disconnect_req(struct mac_context *mac_ctx,
 		break;
 	default:
 		/* Set reason REASON_UNSPEC_FAILURE for prop disassoc */
-		if (reason_code >= REASON_PROP_START)
+		if (reason_code >= REASON_PROP_START &&
+		    reason_code != REASON_FW_TRIGGERED_ROAM_FAILURE)
 			req->req.reason_code = REASON_UNSPEC_FAILURE;
 		lim_prepare_and_send_disassoc(mac_ctx, pe_session, req);
 	}