qcacmn: new handler for pf tags

add tags straight from ppdu_info to headrom for mpdu
tags are positioned per msdu_index within mpdu headroom.

Change-Id: I4863a7929ffd2e0a5d7f91f31ab6059f2b882de4
CRs-Fixed: 3183692
This commit is contained in:
Ruben Columbus
2022-04-28 22:31:32 -07:00
committed by Madan Koyyalamudi
parent dccc154314
commit 5ad83e6c56
3 changed files with 125 additions and 0 deletions

View File

@@ -2691,12 +2691,16 @@ struct cdp_flow_stats {
/**
* cdp_flow_stats - Per-Flow (5-tuple) statistics
* @msdu_count: number of rx msdus matching this flow
* @mon_msdu_count: number of msdus matching this flow in mon path
*
* HW also includes msdu_byte_count and timestamp, which
* are not currently tracked in SW.
*/
struct cdp_flow_stats {
uint32_t msdu_count;
#ifdef QCA_TEST_MON_PF_TAGS_STATS
uint32_t mon_msdu_count;
#endif
};
#endif