|
@@ -20776,6 +20776,7 @@ static QDF_STATUS csr_process_roam_sync_callback(struct mac_context *mac_ctx,
|
|
|
bool abort_host_scan_cap = false;
|
|
|
wlan_scan_id scan_id;
|
|
|
struct wlan_crypto_pmksa *pmksa;
|
|
|
+ uint8_t ssid_offset;
|
|
|
|
|
|
vdev = wlan_objmgr_get_vdev_by_id_from_psoc(mac_ctx->psoc, session_id,
|
|
|
WLAN_LEGACY_SME_ID);
|
|
@@ -21109,9 +21110,16 @@ static QDF_STATUS csr_process_roam_sync_callback(struct mac_context *mac_ctx,
|
|
|
csr_neighbor_roam_state_transition(mac_ctx,
|
|
|
eCSR_NEIGHBOR_ROAM_STATE_INIT, session_id);
|
|
|
}
|
|
|
+
|
|
|
+ if (roam_synch_data->is_ft_im_roam) {
|
|
|
+ ssid_offset = SIR_MAC_ASSOC_REQ_SSID_OFFSET;
|
|
|
+ } else {
|
|
|
+ ssid_offset = SIR_MAC_REASSOC_REQ_SSID_OFFSET;
|
|
|
+ }
|
|
|
+
|
|
|
roam_info->nBeaconLength = 0;
|
|
|
roam_info->nAssocReqLength = roam_synch_data->reassoc_req_length -
|
|
|
- SIR_MAC_HDR_LEN_3A - SIR_MAC_REASSOC_SSID_OFFSET;
|
|
|
+ SIR_MAC_HDR_LEN_3A - ssid_offset;
|
|
|
roam_info->nAssocRspLength = roam_synch_data->reassocRespLength -
|
|
|
SIR_MAC_HDR_LEN_3A;
|
|
|
roam_info->pbFrames = qdf_mem_malloc(roam_info->nBeaconLength +
|
|
@@ -21127,8 +21135,9 @@ static QDF_STATUS csr_process_roam_sync_callback(struct mac_context *mac_ctx,
|
|
|
qdf_mem_copy(roam_info->pbFrames,
|
|
|
(uint8_t *)roam_synch_data +
|
|
|
roam_synch_data->reassoc_req_offset +
|
|
|
- SIR_MAC_HDR_LEN_3A + SIR_MAC_REASSOC_SSID_OFFSET,
|
|
|
+ SIR_MAC_HDR_LEN_3A + ssid_offset,
|
|
|
roam_info->nAssocReqLength);
|
|
|
+
|
|
|
qdf_mem_copy(roam_info->pbFrames + roam_info->nAssocReqLength,
|
|
|
(uint8_t *)roam_synch_data +
|
|
|
roam_synch_data->reassocRespOffset +
|