[dpdk-dev] [PATCH] ethdev: don't count missed packets in erroneous packets counter

2016-03-22 Thread Tahhan, Maryam
> From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Thursday, March 17, 2016 4:41 PM > To: Igor Ryzhov > Cc: dev at dpdk.org; Tahhan, Maryam ; > olivier.matz at 6wind.com > Subject: Re: [dpdk-dev] [PATCH] ethdev: don't count missed packets in > erroneous pa

[dpdk-dev] [PATCH] ethdev: don't count missed packets in erroneous packets counter

2016-03-22 Thread Stephen Hemminger
d.com > > Subject: Re: [dpdk-dev] [PATCH] ethdev: don't count missed packets in > > erroneous packets counter > > > > CC Maryam and Olivier who had discussions about imissed and other > > stats: > > http://dpdk.org/ml/archives/dev/2015-August/022905.html >

[dpdk-dev] [PATCH] ethdev: don't count missed packets in erroneous packets counter

2016-03-22 Thread Thomas Monjalon
2016-03-17 17:40, Thomas Monjalon: > CC Maryam and Olivier who had discussions about imissed and other stats: > http://dpdk.org/ml/archives/dev/2015-August/022905.html > http://dpdk.org/ml/archives/dev/2015-September/023351.html >

[dpdk-dev] [PATCH] ethdev: don't count missed packets in erroneous packets counter

2016-03-17 Thread Thomas Monjalon
CC Maryam and Olivier who had discussions about imissed and other stats: http://dpdk.org/ml/archives/dev/2015-August/022905.html http://dpdk.org/ml/archives/dev/2015-September/023351.html http://dpdk.org/ml/archives/dev/2015-September/023612.html 2016-03-10 16:03, Igor

[dpdk-dev] [PATCH] ethdev: don't count missed packets in erroneous packets counter

2016-03-17 Thread Rahul Lakkireddy
On Thursday, March 03/10/16, 2016 at 16:03:30 +0300, Igor Ryzhov wrote: > Comment for "ierrors" counter says that it counts erroneous received packets. > But for some reason "imissed" counter is added to "ierrors" counter in most > drivers. It is a mistake, because missed packets are obviously

[dpdk-dev] [PATCH] ethdev: don't count missed packets in erroneous packets counter

2016-03-14 Thread Igor Ryzhov
Ping. CCing to maintainers of affected drivers. > 10 ? 2016 ?., ? 16:03, Igor Ryzhov ???(?): > > Comment for "ierrors" counter says that it counts erroneous received packets. > But for some reason "imissed" counter is added to "ierrors" counter in most > drivers. It is a mistake,

[dpdk-dev] [PATCH] ethdev: don't count missed packets in erroneous packets counter

2016-03-14 Thread Lu, Wenzhuo
Hi, > -Original Message- > From: Igor Ryzhov [mailto:iryzhov at nfware.com] > Sent: Monday, March 14, 2016 3:31 PM > To: ? ? > Cc: dev at dpdk.org; Rahul Lakkireddy; Lu, Wenzhuo; Zhang, Helin; Ananyev, > Konstantin > Subject: Re: [dpdk-dev] [PATCH] ethde

[dpdk-dev] [PATCH] ethdev: don't count missed packets in erroneous packets counter

2016-03-10 Thread Igor Ryzhov
Comment for "ierrors" counter says that it counts erroneous received packets. But for some reason "imissed" counter is added to "ierrors" counter in most drivers. It is a mistake, because missed packets are obviously not received. This patch fixes it. Signed-off-by: Igor Ryzhov ---