qcacmn: Add support to extract big data params

Add wmi support to extract params from
WMI_VDEV_SEND_BIG_DATA_P2_EVENTID.

Change-Id: Ifee6f5e94dc533af54c9333c434cdf9778eae3ca
CRs-Fixed: 2875576
This commit is contained in:
sheenam monga
2021-02-10 23:36:50 +05:30
committed by snandini
parent 7ebc682b49
commit 7359f9236d
2 changed files with 6 additions and 2 deletions

View File

@@ -1788,7 +1788,11 @@ QDF_STATUS (*extract_rtt_error_report_ev)(wmi_unified_t wmi_handle,
QDF_STATUS (*extract_all_stats_count)(wmi_unified_t wmi_handle, void *evt_buf, QDF_STATUS (*extract_all_stats_count)(wmi_unified_t wmi_handle, void *evt_buf,
wmi_host_stats_event *stats_param); wmi_host_stats_event *stats_param);
#ifdef WLAN_FEATURE_BIG_DATA_STATS
QDF_STATUS (*extract_big_data_stats)(
wmi_unified_t wmi_handle, void *evt_buf,
struct big_data_stats_event *stats_param);
#endif
QDF_STATUS (*extract_pdev_stats)(wmi_unified_t wmi_handle, void *evt_buf, QDF_STATUS (*extract_pdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
uint32_t index, wmi_host_pdev_stats *pdev_stats); uint32_t index, wmi_host_pdev_stats *pdev_stats);

View File

@@ -401,7 +401,7 @@ send_stats_request_cmd_tlv(wmi_unified_t wmi_handle,
WMI_REQUEST_STATS_CMDID); WMI_REQUEST_STATS_CMDID);
if (ret) { if (ret) {
wmi_err("Failed to send status request to fw =%d", ret); wmi_err("Failed to send stats request to fw =%d", ret);
wmi_buf_free(buf); wmi_buf_free(buf);
} }