qcacmn: Add debug statistics for monitor mode

qcacmn: Add debug statistics for monitor mode

Change-Id: I3fe59af1c7f561bd22f502eb5b19265ecd49ee69
CRs-Fixed: 2677656
This commit is contained in:
Amir
2020-05-03 17:52:43 +05:30
committed by nshrivas
parent 787adae107
commit d2e553e973
4 changed files with 17 additions and 0 deletions

View File

@@ -225,6 +225,8 @@ enum {
* mointor status and monitor destination ring
* @ppdu_id_match: counter to track ppdu id match in
* mointor status and monitor destination ring
* @status_ppdu_drop: Number of ppdu dropped from monitor status ring
* @dest_ppdu_drop: Number of ppdu dropped from monitor destination ring
*/
struct cdp_pdev_mon_stats {
#ifndef REMOVE_MON_DBG_STATS
@@ -250,5 +252,7 @@ struct cdp_pdev_mon_stats {
uint32_t mon_rx_bufs_reaped_dest;
uint32_t ppdu_id_mismatch;
uint32_t ppdu_id_match;
uint32_t status_ppdu_drop;
uint32_t dest_ppdu_drop;
};
#endif