qcacld-3.0: Modify MGMT logs to add MLO Parameter after Roaming

MLO parameter is not observed in association/reassociation
request/response logs when connected to MLO AP.

Call api wlan_populate_mlo_mgmt_event_param() in the
api cm_roam_mgmt_frame_event() in order to populate
MLO parameter in MGMT frame logs after roaming.

Change-Id: I9dbd1a224ec861964a78883088440d79ae80cdd6
CRs-Fixed: 3620741
Este commit está contenido en:
Vijay Raj
2023-09-21 00:15:51 -07:00
cometido por Rahul Choudhary
padre e0181c4873
commit 0dc1988bb3
Se han modificado 4 ficheros con 47 adiciones y 14 borrados

Ver fichero

@@ -3018,6 +3018,11 @@ extract_roam_stats_with_single_tlv(wmi_unified_t wmi_handle, uint8_t *evt_buf,
uint8_t vdev_id = stats_info->vdev_id;
uint8_t band;
status = wmi_unified_extract_roam_scan_stats(
wmi_handle, evt_buf, &stats_info->scan[0], 0, 0, 0);
if (QDF_IS_STATUS_ERROR(status))
wmi_debug("Roam scan stats extract failed vdev %d", vdev_id);
band = stats_info->scan[0].band;
status = wmi_unified_extract_roam_11kv_stats(
@@ -3032,11 +3037,6 @@ extract_roam_stats_with_single_tlv(wmi_unified_t wmi_handle, uint8_t *evt_buf,
wmi_debug("Extract roamtrigger stats failed vdev %d",
vdev_id);
status = wmi_unified_extract_roam_scan_stats(
wmi_handle, evt_buf, &stats_info->scan[0], 0, 0, 0);
if (QDF_IS_STATUS_ERROR(status))
wmi_debug("Roam scan stats extract failed vdev %d", vdev_id);
status = wmi_unified_extract_roam_btm_response(
wmi_handle, evt_buf, &stats_info->btm_rsp[0], 0);
if (QDF_IS_STATUS_ERROR(status))