qcacmn: FISA data structure movement

Move the non-converged data structure for FISA
out of converged DP section.

Change-Id: I76d8ac924814d5881f3fd1f75db3ee01cf87113f
CRs-Fixed: 3512037
This commit is contained in:
Rakesh Pillai
2023-05-19 05:35:27 -07:00
committed by Rahul Choudhary
parent 47c1ec75a2
commit b47aea82ae
6 changed files with 26 additions and 209 deletions

View File

@@ -3009,6 +3009,18 @@ struct cdp_peer_cookie {
uint8_t cookie;
};
/**
* enum cdp_fisa_stats_id - ID to query FISA stats
* @CDP_FISA_STATS_ID_ERR_STATS: FISA error stats
* @CDP_FISA_STATS_ID_DUMP_HW_FST: HW FST dump
* @CDP_FISA_STATS_ID_DUMP_SW_FST: SW FST dump
*/
enum cdp_fisa_stats_id {
CDP_FISA_STATS_ID_ERR_STATS,
CDP_FISA_STATS_ID_DUMP_HW_FST,
CDP_FISA_STATS_ID_DUMP_SW_FST,
};
#ifdef WLAN_SUPPORT_RX_FISA
struct cdp_flow_stats {
uint32_t aggr_count;