DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] virtio: Fix stats issue
@ 2015-03-23  6:56 Ouyang Changchun
  2015-03-23  7:20 ` David Marchand
  0 siblings, 1 reply; 7+ messages in thread
From: Ouyang Changchun @ 2015-03-23  6:56 UTC (permalink / raw)
  To: dev

It need clear/reset the stats information before count in all queues data.

Signed-off-by: Changchun Ouyang <changchun.ouyang@intel.com>
---
 lib/librte_pmd_virtio/virtio_ethdev.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/lib/librte_pmd_virtio/virtio_ethdev.c b/lib/librte_pmd_virtio/virtio_ethdev.c
index 603be2d..e4cb55e 100644
--- a/lib/librte_pmd_virtio/virtio_ethdev.c
+++ b/lib/librte_pmd_virtio/virtio_ethdev.c
@@ -572,6 +572,10 @@ virtio_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
 {
 	unsigned i;
 
+	stats->opackets = 0;
+	stats->obytes = 0;
+	stats->oerrors = 0;
+
 	for (i = 0; i < dev->data->nb_tx_queues; i++) {
 		const struct virtqueue *txvq = dev->data->tx_queues[i];
 		if (txvq == NULL)
@@ -587,6 +591,10 @@ virtio_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
 		}
 	}
 
+	stats->ipackets = 0;
+	stats->ibytes = 0;
+	stats->ierrors = 0;
+
 	for (i = 0; i < dev->data->nb_rx_queues; i++) {
 		const struct virtqueue *rxvq = dev->data->rx_queues[i];
 		if (rxvq == NULL)
-- 
1.8.4.2

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [dpdk-dev] [PATCH] virtio: Fix stats issue
  2015-03-23  6:56 [dpdk-dev] [PATCH] virtio: Fix stats issue Ouyang Changchun
@ 2015-03-23  7:20 ` David Marchand
  2015-03-23  8:38   ` Ouyang, Changchun
  0 siblings, 1 reply; 7+ messages in thread
From: David Marchand @ 2015-03-23  7:20 UTC (permalink / raw)
  To: Ouyang Changchun; +Cc: dev

Hello,

Hello,

On Mon, Mar 23, 2015 at 7:56 AM, Ouyang Changchun <
changchun.ouyang@intel.com> wrote:

> It need clear/reset the stats information before count in all queues data.
>
> Signed-off-by: Changchun Ouyang <changchun.ouyang@intel.com>
> ---
>  lib/librte_pmd_virtio/virtio_ethdev.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/lib/librte_pmd_virtio/virtio_ethdev.c
> b/lib/librte_pmd_virtio/virtio_ethdev.c
> index 603be2d..e4cb55e 100644
> --- a/lib/librte_pmd_virtio/virtio_ethdev.c
> +++ b/lib/librte_pmd_virtio/virtio_ethdev.c
> @@ -572,6 +572,10 @@ virtio_dev_stats_get(struct rte_eth_dev *dev, struct
> rte_eth_stats *stats)
>  {
>         unsigned i;
>
> +       stats->opackets = 0;
> +       stats->obytes = 0;
> +       stats->oerrors = 0;
>

stats are supposed to be zero'd in generic rte_ethdev.c before this pmd
function is called, so this patch seems useless to me.
Can you give some context ?

Same comment for the i* part.

-- 
David Marchand

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [dpdk-dev] [PATCH] virtio: Fix stats issue
  2015-03-23  7:20 ` David Marchand
@ 2015-03-23  8:38   ` Ouyang, Changchun
  2015-03-23 10:42     ` Thomas Monjalon
  0 siblings, 1 reply; 7+ messages in thread
From: Ouyang, Changchun @ 2015-03-23  8:38 UTC (permalink / raw)
  To: David Marchand; +Cc: dev



On 3/23/2015 3:20 PM, David Marchand wrote:
> Hello,
>
> Hello,
>
> On Mon, Mar 23, 2015 at 7:56 AM, Ouyang Changchun 
> <changchun.ouyang@intel.com <mailto:changchun.ouyang@intel.com>> wrote:
>
>     It need clear/reset the stats information before count in all
>     queues data.
>
>     Signed-off-by: Changchun Ouyang <changchun.ouyang@intel.com
>     <mailto:changchun.ouyang@intel.com>>
>     ---
>      lib/librte_pmd_virtio/virtio_ethdev.c | 8 ++++++++
>      1 file changed, 8 insertions(+)
>
>     diff --git a/lib/librte_pmd_virtio/virtio_ethdev.c
>     b/lib/librte_pmd_virtio/virtio_ethdev.c
>     index 603be2d..e4cb55e 100644
>     --- a/lib/librte_pmd_virtio/virtio_ethdev.c
>     +++ b/lib/librte_pmd_virtio/virtio_ethdev.c
>     @@ -572,6 +572,10 @@ virtio_dev_stats_get(struct rte_eth_dev *dev,
>     struct rte_eth_stats *stats)
>      {
>             unsigned i;
>
>     +       stats->opackets = 0;
>     +       stats->obytes = 0;
>     +       stats->oerrors = 0;
>
>
> stats are supposed to be zero'd in generic rte_ethdev.c before this 
> pmd function is called, so this patch seems useless to me.
> Can you give some context ?
>
> Same comment for the i* part.
>
2 reasons:
1. this change could keep the stats_get has consistent behavior with the 
one in other drivers;
2. we don't rely on the assumption of caller always zero'd the stats, 
and still can return correct value;
thanks
Changchun

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [dpdk-dev] [PATCH] virtio: Fix stats issue
  2015-03-23  8:38   ` Ouyang, Changchun
@ 2015-03-23 10:42     ` Thomas Monjalon
  2015-03-23 22:53       ` Stephen Hemminger
  2015-03-27 14:26       ` Ouyang, Changchun
  0 siblings, 2 replies; 7+ messages in thread
From: Thomas Monjalon @ 2015-03-23 10:42 UTC (permalink / raw)
  To: Ouyang, Changchun; +Cc: dev

2015-03-23 16:38, Ouyang, Changchun:
> On 3/23/2015 3:20 PM, David Marchand wrote:
> > On Mon, Mar 23, 2015 at 7:56 AM, Ouyang Changchun 
> > <changchun.ouyang@intel.com <mailto:changchun.ouyang@intel.com>> wrote:
> >
> >     It need clear/reset the stats information before count in all
> >     queues data.
> >
> >     Signed-off-by: Changchun Ouyang <changchun.ouyang@intel.com
> >     <mailto:changchun.ouyang@intel.com>>
> >     ---
> >      lib/librte_pmd_virtio/virtio_ethdev.c | 8 ++++++++
> >      1 file changed, 8 insertions(+)
> >
> >     diff --git a/lib/librte_pmd_virtio/virtio_ethdev.c
> >     b/lib/librte_pmd_virtio/virtio_ethdev.c
> >     index 603be2d..e4cb55e 100644
> >     --- a/lib/librte_pmd_virtio/virtio_ethdev.c
> >     +++ b/lib/librte_pmd_virtio/virtio_ethdev.c
> >     @@ -572,6 +572,10 @@ virtio_dev_stats_get(struct rte_eth_dev *dev,
> >     struct rte_eth_stats *stats)
> >      {
> >             unsigned i;
> >
> >     +       stats->opackets = 0;
> >     +       stats->obytes = 0;
> >     +       stats->oerrors = 0;
> >
> >
> > stats are supposed to be zero'd in generic rte_ethdev.c before this 
> > pmd function is called, so this patch seems useless to me.
> > Can you give some context ?
> >
> > Same comment for the i* part.
> >
> 2 reasons:
> 1. this change could keep the stats_get has consistent behavior with the 
> one in other drivers;

If there are some useless reset in other drivers, they should be removed.

> 2. we don't rely on the assumption of caller always zero'd the stats, 
> and still can return correct value;

The caller is ethdev and it is zero'ing the structure before the call:
	http://dpdk.org/browse/dpdk/commit/?id=02331c16ec0

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [dpdk-dev] [PATCH] virtio: Fix stats issue
  2015-03-23 10:42     ` Thomas Monjalon
@ 2015-03-23 22:53       ` Stephen Hemminger
  2015-03-27 14:26       ` Ouyang, Changchun
  1 sibling, 0 replies; 7+ messages in thread
From: Stephen Hemminger @ 2015-03-23 22:53 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev

I agree with Thomas. If some other drivers have memset they should also be
fixed

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [dpdk-dev] [PATCH] virtio: Fix stats issue
  2015-03-23 10:42     ` Thomas Monjalon
  2015-03-23 22:53       ` Stephen Hemminger
@ 2015-03-27 14:26       ` Ouyang, Changchun
  2015-03-27 15:25         ` Thomas Monjalon
  1 sibling, 1 reply; 7+ messages in thread
From: Ouyang, Changchun @ 2015-03-27 14:26 UTC (permalink / raw)
  To: Thomas Monjalon, Stephen Hemminger; +Cc: dev

Hi Stephen, Thomas, David,



> -----Original Message-----
> From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com]
> Sent: Monday, March 23, 2015 6:42 PM
> To: Ouyang, Changchun
> Cc: dev@dpdk.org; David Marchand
> Subject: Re: [dpdk-dev] [PATCH] virtio: Fix stats issue
> 
> 2015-03-23 16:38, Ouyang, Changchun:
> > On 3/23/2015 3:20 PM, David Marchand wrote:
> > > On Mon, Mar 23, 2015 at 7:56 AM, Ouyang Changchun
> > > <changchun.ouyang@intel.com <mailto:changchun.ouyang@intel.com>>
> wrote:
> > >
> > >     It need clear/reset the stats information before count in all
> > >     queues data.
> > >
> > >     Signed-off-by: Changchun Ouyang <changchun.ouyang@intel.com
> > >     <mailto:changchun.ouyang@intel.com>>
> > >     ---
> > >      lib/librte_pmd_virtio/virtio_ethdev.c | 8 ++++++++
> > >      1 file changed, 8 insertions(+)
> > >
> > >     diff --git a/lib/librte_pmd_virtio/virtio_ethdev.c
> > >     b/lib/librte_pmd_virtio/virtio_ethdev.c
> > >     index 603be2d..e4cb55e 100644
> > >     --- a/lib/librte_pmd_virtio/virtio_ethdev.c
> > >     +++ b/lib/librte_pmd_virtio/virtio_ethdev.c
> > >     @@ -572,6 +572,10 @@ virtio_dev_stats_get(struct rte_eth_dev *dev,
> > >     struct rte_eth_stats *stats)
> > >      {
> > >             unsigned i;
> > >
> > >     +       stats->opackets = 0;
> > >     +       stats->obytes = 0;
> > >     +       stats->oerrors = 0;
> > >
> > >
> > > stats are supposed to be zero'd in generic rte_ethdev.c before this
> > > pmd function is called, so this patch seems useless to me.
> > > Can you give some context ?
> > >
> > > Same comment for the i* part.
> > >
> > 2 reasons:
> > 1. this change could keep the stats_get has consistent behavior with
> > the one in other drivers;
> 
> If there are some useless reset in other drivers, they should be removed.
> 
> > 2. we don't rely on the assumption of caller always zero'd the stats,
> > and still can return correct value;
> 
> The caller is ethdev and it is zero'ing the structure before the call:
> 	http://dpdk.org/browse/dpdk/commit/?id=02331c16ec0
> 

I have seen this patch is rejected in patch-work,
But I'd like continue to discuss it here.
 
Do you guys see any big issues if we initialize 0 here in this function?
Well, I don't see any big issue here, just once again zero'd the stats info before get the actual value, it doesn't affect the rx and tx perf.

do you guys think it is better way to make a function behave under some assumption like here, caller must zero'd some memory?
It could work, but I think the better way is every function should make sure it has correct behavior even without any assumption.

On the other hand, I even think it is worthy to revert this patch, if you guys think the duplicated zero'd are not so nice:
http://dpdk.org/browse/dpdk/commit/?id=02331c16ec0

the background is that 
some guys want to implement another function(mostly like API in ethdev) which will call  virtio_dev_stats_get directly,
and NOT zero'd the stats before the calling, and then get the incorrect stats info as stats use '+=' to calculate the value and nowhere zero'd it before
do the '+='.  

So my opinion is we had better zero'd in virtio_dev_stats_get, instead of in rtedev,
While other pmd use '=' rather than '+=',
So they don't need explicitly zero'd the stats, but has similar effect.

Any thoughts?

Thanks
Changchun

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [dpdk-dev] [PATCH] virtio: Fix stats issue
  2015-03-27 14:26       ` Ouyang, Changchun
@ 2015-03-27 15:25         ` Thomas Monjalon
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Monjalon @ 2015-03-27 15:25 UTC (permalink / raw)
  To: Ouyang, Changchun; +Cc: dev

2015-03-27 14:26, Ouyang, Changchun:
> From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com]
> > 2015-03-23 16:38, Ouyang, Changchun:
> > > On 3/23/2015 3:20 PM, David Marchand wrote:
> > > > On Mon, Mar 23, 2015 at 7:56 AM, Ouyang Changchun wrote:
> > > >     --- a/lib/librte_pmd_virtio/virtio_ethdev.c
> > > >     +++ b/lib/librte_pmd_virtio/virtio_ethdev.c
> > > >     @@ -572,6 +572,10 @@ virtio_dev_stats_get(struct rte_eth_dev *dev,
> > > >     struct rte_eth_stats *stats)
> > > >      {
> > > >             unsigned i;
> > > >
> > > >     +       stats->opackets = 0;
> > > >     +       stats->obytes = 0;
> > > >     +       stats->oerrors = 0;
> > > >
> > > >
> > > > stats are supposed to be zero'd in generic rte_ethdev.c before this
> > > > pmd function is called, so this patch seems useless to me.
> > > > Can you give some context ?
> > > >
> > > > Same comment for the i* part.
> > > >
> > > 2 reasons:
> > > 1. this change could keep the stats_get has consistent behavior with
> > > the one in other drivers;
> > 
> > If there are some useless reset in other drivers, they should be removed.
> > 
> > > 2. we don't rely on the assumption of caller always zero'd the stats,
> > > and still can return correct value;
> > 
> > The caller is ethdev and it is zero'ing the structure before the call:
> > 	http://dpdk.org/browse/dpdk/commit/?id=02331c16ec0
> > 
> 
> I have seen this patch is rejected in patch-work,
> But I'd like continue to discuss it here.
>  
> Do you guys see any big issues if we initialize 0 here in this function?
> Well, I don't see any big issue here, just once again zero'd the stats info before get the actual value, it doesn't affect the rx and tx perf.
> 
> do you guys think it is better way to make a function behave under some assumption like here, caller must zero'd some memory?
> It could work, but I think the better way is every function should make sure it has correct behavior even without any assumption.

Assumptions are everywhere, we call it API ;)

> On the other hand, I even think it is worthy to revert this patch, if you guys think the duplicated zero'd are not so nice:
> http://dpdk.org/browse/dpdk/commit/?id=02331c16ec0
> 
> the background is that 
> some guys want to implement another function(mostly like API in ethdev) which will call  virtio_dev_stats_get directly,
> and NOT zero'd the stats before the calling, and then get the incorrect stats info as stats use '+=' to calculate the value and nowhere zero'd it before
> do the '+='.  

You should think about zero'ing prerequisite as driver API of stats_get implementation.
If you want to call it in another place, you just have to respect this API and do the zero'ing.
This kind of API must be clear to show where are the responsibilities and make maintenance easier.

> So my opinion is we had better zero'd in virtio_dev_stats_get, instead of in rtedev,
> While other pmd use '=' rather than '+=',
> So they don't need explicitly zero'd the stats, but has similar effect.
> 
> Any thoughts?
> 
> Thanks
> Changchun

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-03-27 15:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-23  6:56 [dpdk-dev] [PATCH] virtio: Fix stats issue Ouyang Changchun
2015-03-23  7:20 ` David Marchand
2015-03-23  8:38   ` Ouyang, Changchun
2015-03-23 10:42     ` Thomas Monjalon
2015-03-23 22:53       ` Stephen Hemminger
2015-03-27 14:26       ` Ouyang, Changchun
2015-03-27 15:25         ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).