qcacmn: stats VoW IGMP improvements

Add stats VoW IGMP improvements feature

Change-Id: I86b803e67f2cc3cfc01750f261f06590ff2b97c2
This commit is contained in:
Pavankumar Nandeshwar
2020-08-24 03:34:40 +05:30
committed by snandini
parent 7db23eeca2
commit f0d2f53e32
6 changed files with 46 additions and 4 deletions

View File

@@ -1178,6 +1178,8 @@ struct cdp_rx_stats {
* @ucast: total unicast packets transmitted
* @fail_seg_alloc: Segment allocation failure
* @clone_fail: NBUF clone failure
* @igmp_rcvd: igmp pkts received for conversion to ucast pkts
* @igmp_ucast_converted: unicast pkts sent as part of VoW IGMP improvements
* @dropped_pkt: Total scatter gather packets
* @desc_na: Desc Not Available
* @exc_desc_na: Exception desc Not Available
@@ -1225,6 +1227,12 @@ struct cdp_tx_ingress_stats {
uint32_t clone_fail;
} mcast_en;
/* IGMP Multicast Enhancement packets info */
struct {
uint32_t igmp_rcvd;
uint32_t igmp_ucast_converted;
} igmp_mcast_en;
/* Packets dropped on the Tx side */
struct {
struct cdp_pkt_info dropped_pkt;