From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [PATCH v3] examples/vhost: fix statistics error Date: Thu, 3 Dec 2015 14:28:31 +0800 Message-ID: <20151203062831.GZ2325@yliu-dev.sh.intel.com> References: <1449009174-93334-1-git-send-email-jianfeng.tan@intel.com> <1449098426-128162-1-git-send-email-jianfeng.tan@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org To: Jianfeng Tan Return-path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 8634F2A5B for ; Thu, 3 Dec 2015 07:24:58 +0100 (CET) Content-Disposition: inline In-Reply-To: <1449098426-128162-1-git-send-email-jianfeng.tan@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Thu, Dec 03, 2015 at 07:20:26AM +0800, Jianfeng Tan wrote: > This issue was discovered under the case of software vm2vm > fowarding. When pkts are received from virtio device 0 and > tx_route to virtio device 1, tx of device 0 is not updated. > > Signed-off-by: Jianfeng Tan > Tested-by: Qian Xu Acked-by: Yuanhan Liu Thanks. --yliu > --- > examples/vhost/main.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/examples/vhost/main.c b/examples/vhost/main.c > index 9bfda6d..dc3a012 100644 > --- a/examples/vhost/main.c > +++ b/examples/vhost/main.c > @@ -1050,8 +1050,8 @@ virtio_tx_local(struct vhost_dev *vdev, struct rte_mbuf *m) > rte_atomic64_add( > &dev_statistics[tdev->device_fh].rx_atomic, > ret); > - dev_statistics[tdev->device_fh].tx_total++; > - dev_statistics[tdev->device_fh].tx += ret; > + dev_statistics[dev->device_fh].tx_total++; > + dev_statistics[dev->device_fh].tx += ret; > } > } > > -- > 2.1.4