DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] vhost: fix Tx error counting of vhost PMD
@ 2016-06-24  2:04 Tetsuya Mukawa
  2016-06-24  2:17 ` Yuanhan Liu
  0 siblings, 1 reply; 4+ messages in thread
From: Tetsuya Mukawa @ 2016-06-24  2:04 UTC (permalink / raw)
  To: dev; +Cc: yuanhan.liu

According to 'rte_eth_stats' structure comments, 'imissed'
should represent RX error counting, but currently 'imissed' is
used to count TX error.
The patch replaces 'imissed' by 'oerrors'.

Fixes: ee584e9710b9 ("vhost: add driver on top of the library")
Signed-off-by: Tetsuya Mukawa <mukawa@igel.co.jp>
---
 drivers/net/vhost/rte_eth_vhost.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/vhost/rte_eth_vhost.c b/drivers/net/vhost/rte_eth_vhost.c
index c5bbb87..3b50946 100644
--- a/drivers/net/vhost/rte_eth_vhost.c
+++ b/drivers/net/vhost/rte_eth_vhost.c
@@ -594,7 +594,7 @@ eth_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
 
 	stats->ipackets = rx_total;
 	stats->opackets = tx_total;
-	stats->imissed = tx_missed_total;
+	stats->oerrors = tx_missed_total;
 	stats->ibytes = rx_total_bytes;
 	stats->obytes = tx_total_bytes;
 }
-- 
2.7.4

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

* Re: [dpdk-dev] [PATCH] vhost: fix Tx error counting of vhost PMD
  2016-06-24  2:04 [dpdk-dev] [PATCH] vhost: fix Tx error counting of vhost PMD Tetsuya Mukawa
@ 2016-06-24  2:17 ` Yuanhan Liu
  2016-06-24  3:08   ` Tetsuya Mukawa
  2016-06-30  5:23   ` Yuanhan Liu
  0 siblings, 2 replies; 4+ messages in thread
From: Yuanhan Liu @ 2016-06-24  2:17 UTC (permalink / raw)
  To: Tetsuya Mukawa; +Cc: dev

On Fri, Jun 24, 2016 at 11:04:20AM +0900, Tetsuya Mukawa wrote:
> According to 'rte_eth_stats' structure comments, 'imissed'
> should represent RX error counting, but currently 'imissed' is
> used to count TX error.
> The patch replaces 'imissed' by 'oerrors'.
> 
> Fixes: ee584e9710b9 ("vhost: add driver on top of the library")
> Signed-off-by: Tetsuya Mukawa <mukawa@igel.co.jp>

Acked-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>

(And sorry for the delay: I planned to look at the report from
you at the earlier of this week; but somehow I forgot :(

	--yliu

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

* Re: [dpdk-dev] [PATCH] vhost: fix Tx error counting of vhost PMD
  2016-06-24  2:17 ` Yuanhan Liu
@ 2016-06-24  3:08   ` Tetsuya Mukawa
  2016-06-30  5:23   ` Yuanhan Liu
  1 sibling, 0 replies; 4+ messages in thread
From: Tetsuya Mukawa @ 2016-06-24  3:08 UTC (permalink / raw)
  To: Yuanhan Liu; +Cc: dev

On 2016/06/24 11:17, Yuanhan Liu wrote:
> On Fri, Jun 24, 2016 at 11:04:20AM +0900, Tetsuya Mukawa wrote:
>> According to 'rte_eth_stats' structure comments, 'imissed'
>> should represent RX error counting, but currently 'imissed' is
>> used to count TX error.
>> The patch replaces 'imissed' by 'oerrors'.
>>
>> Fixes: ee584e9710b9 ("vhost: add driver on top of the library")
>> Signed-off-by: Tetsuya Mukawa <mukawa@igel.co.jp>
> 
> Acked-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
> 
> (And sorry for the delay: I planned to look at the report from
> you at the earlier of this week; but somehow I forgot :(
> 
> 	--yliu
> 

Hi Yuanhan,

No need to worry. Thanks for your checking!

Thanks,
Tetsuya

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

* Re: [dpdk-dev] [PATCH] vhost: fix Tx error counting of vhost PMD
  2016-06-24  2:17 ` Yuanhan Liu
  2016-06-24  3:08   ` Tetsuya Mukawa
@ 2016-06-30  5:23   ` Yuanhan Liu
  1 sibling, 0 replies; 4+ messages in thread
From: Yuanhan Liu @ 2016-06-30  5:23 UTC (permalink / raw)
  To: Tetsuya Mukawa; +Cc: dev

On Fri, Jun 24, 2016 at 10:17:20AM +0800, Yuanhan Liu wrote:
> On Fri, Jun 24, 2016 at 11:04:20AM +0900, Tetsuya Mukawa wrote:
> > According to 'rte_eth_stats' structure comments, 'imissed'
> > should represent RX error counting, but currently 'imissed' is
> > used to count TX error.
> > The patch replaces 'imissed' by 'oerrors'.
> > 
> > Fixes: ee584e9710b9 ("vhost: add driver on top of the library")
> > Signed-off-by: Tetsuya Mukawa <mukawa@igel.co.jp>
> 
> Acked-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>

Applied to dpdk-next-virtio.

Thanks.

	--yliu

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

end of thread, other threads:[~2016-06-30  5:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-24  2:04 [dpdk-dev] [PATCH] vhost: fix Tx error counting of vhost PMD Tetsuya Mukawa
2016-06-24  2:17 ` Yuanhan Liu
2016-06-24  3:08   ` Tetsuya Mukawa
2016-06-30  5:23   ` Yuanhan Liu

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).