DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ouyang Changchun <changchun.ouyang@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH] virtio: Fix stats issue
Date: Mon, 23 Mar 2015 14:56:38 +0800	[thread overview]
Message-ID: <1427093798-23078-1-git-send-email-changchun.ouyang@intel.com> (raw)

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

             reply	other threads:[~2015-03-23  6:56 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-23  6:56 Ouyang Changchun [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1427093798-23078-1-git-send-email-changchun.ouyang@intel.com \
    --to=changchun.ouyang@intel.com \
    --cc=dev@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).