[dpdk-dev] [PATCH 1/4] ixgbe: expose extended error statistics

2015-06-17 Thread Thomas Monjalon
2015-06-09 17:51, Stephen Hemminger: > On Fri, 5 Jun 2015 18:35:02 +0100 > Maryam Tahhan wrote: > > > Implement xstats_get() and xstats_reset() in dev_ops for ixgbe to expose > > detailed error statistics to DPDK applications. > > > > Signed-off-by: Maryam Tahhan > > Also, the bug where CRC

[dpdk-dev] [PATCH 1/4] ixgbe: expose extended error statistics

2015-06-10 Thread Tahhan, Maryam
> From: Stephen Hemminger [mailto:stephen at networkplumber.org] > Sent: Wednesday, June 10, 2015 1:51 AM > To: Tahhan, Maryam > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 1/4] ixgbe: expose extended error statistics > > On Fri, 5 Jun 2015 18:35:02 +0100 &

[dpdk-dev] [PATCH 1/4] ixgbe: expose extended error statistics

2015-06-09 Thread Stephen Hemminger
On Fri, 5 Jun 2015 18:35:02 +0100 Maryam Tahhan wrote: > Implement xstats_get() and xstats_reset() in dev_ops for ixgbe to expose > detailed error statistics to DPDK applications. > > Signed-off-by: Maryam Tahhan Also, the bug where CRC is included in Tx byte count but not in the Rx byte

[dpdk-dev] [PATCH 1/4] ixgbe: expose extended error statistics

2015-06-08 Thread Tahhan, Maryam
> + stats->idrop = hw_stats->mngpdc + > + hw_stats->fcoerpdc + > + total_qbrc; Should use qprdc instead of total_qbrc

[dpdk-dev] [PATCH 1/4] ixgbe: expose extended error statistics

2015-06-05 Thread Maryam Tahhan
Implement xstats_get() and xstats_reset() in dev_ops for ixgbe to expose detailed error statistics to DPDK applications. Signed-off-by: Maryam Tahhan --- drivers/net/ixgbe/ixgbe_ethdev.c | 160 +-- 1 file changed, 138 insertions(+), 22 deletions(-) diff