Explorar el Código

qcacld-3.0: Don't treat assoc req as reassoc req

Add a flag to indicate assoc req is used for this roaming,
don't treat assoc req as reassoc req.

Change-Id: I3a13985b6b173892fbe281668d07f7179d1c364c
CRs-Fixed: 3274314
Jianmin Zhu hace 2 años
padre
commit
e3ff91adef

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

@@ -332,7 +332,7 @@ cm_populate_connect_ies(struct roam_offload_synch_ind *roam_synch_data,
 		qdf_mem_copy(connect_ies->assoc_req.ptr, reassoc_req_ptr,
 			     connect_ies->assoc_req.len);
 	}
-	rsp->connect_rsp.is_ft = roam_synch_data->is_ft_im_roam;
+	rsp->connect_rsp.is_assoc = roam_synch_data->is_assoc;
 
 	cm_fill_fils_ie(connect_ies, roam_synch_data);
 

+ 1 - 0
components/umac/mlme/connection_mgr/dispatcher/inc/wlan_cm_roam_public_struct.h

@@ -2558,6 +2558,7 @@ struct roam_offload_synch_ind {
 	uint16_t hlp_data_len;
 	uint8_t hlp_data[FILS_MAX_HLP_DATA_LEN];
 	bool is_ft_im_roam;
+	uint8_t is_assoc;
 	enum wlan_phymode phy_mode; /*phy mode sent by fw */
 	wmi_channel chan;
 #ifdef WLAN_FEATURE_11BE_MLO

+ 8 - 5
core/mac/src/pe/lim/lim_api.c

@@ -2562,11 +2562,14 @@ lim_check_ft_initial_im_association(struct roam_offload_synch_ind *roam_synch,
 	hdr = (tpSirMacMgmtHdr) assoc_req_ptr;
 
 	if (hdr->fc.type == SIR_MAC_MGMT_FRAME &&
-	    hdr->fc.subType == SIR_MAC_MGMT_ASSOC_REQ &&
-	    session_entry->is11Rconnection) {
-		pe_debug("Frame subtype: %d and connection is %d",
-			 hdr->fc.subType, session_entry->is11Rconnection);
-		roam_synch->is_ft_im_roam = true;
+	    hdr->fc.subType == SIR_MAC_MGMT_ASSOC_REQ) {
+		roam_synch->is_assoc = true;
+		if (session_entry->is11Rconnection) {
+			pe_debug("Frame subtype: %d and connection is %d",
+				 hdr->fc.subType,
+				 session_entry->is11Rconnection);
+			roam_synch->is_ft_im_roam = true;
+		}
 	}
 }