qcacmn: Log time stamp of multi vdev restart response

Log the time stamp corresponding to the start of processing
of multi vdev restart response event.

CRs-Fixed: 3308918
Change-Id: Ia00923b3a1033097429d3856047a4b639408aab8
This commit is contained in:
Edayilliam Jayadev
2022-10-06 08:41:22 +05:30
committed by Madan Koyyalamudi
parent 94c2176709
commit d36d1c8c2a
2 changed files with 3 additions and 0 deletions

View File

@@ -719,6 +719,7 @@ static int target_if_vdev_mgr_multi_vdev_restart_resp_handler(
}
qdf_mem_zero(&restart_resp, sizeof(restart_resp));
restart_resp.timestamp = qdf_get_log_timestamp();
if (wmi_extract_multi_vdev_restart_resp_event(wmi_handle, data,
&restart_resp)) {
mlme_err("WMI extract failed");

View File

@@ -180,11 +180,13 @@ struct peer_delete_all_response {
* @pdev_id: pdev id
* @status: FW status for multi vdev restart request
* @vdev_id_bmap: Bitmap of vdev_ids
* @timestamp: Time stamp corresponding to the start of event processing
*/
struct multi_vdev_restart_resp {
uint8_t pdev_id;
uint8_t status;
qdf_bitmap(vdev_id_bmap, WLAN_UMAC_PSOC_MAX_VDEVS);
uint64_t timestamp;
};
#ifdef WLAN_FEATURE_11BE_MLO