From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id AC43C5908 for ; Thu, 22 Sep 2016 10:21:23 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga102.fm.intel.com with ESMTP; 22 Sep 2016 01:21:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,378,1470726000"; d="scan'208";a="882587696" Received: from dpdk2.bj.intel.com ([172.16.182.65]) by orsmga003.jf.intel.com with ESMTP; 22 Sep 2016 01:21:21 -0700 From: Zhiyong Yang To: dev@dpdk.org Cc: yuanhan.liu@intel.com, thomas.monjalon@6wind.com, pmatilai@redhat.com, harry.van.haaren@intel.com Date: Thu, 22 Sep 2016 16:19:07 +0800 Message-Id: <1474532349-73337-1-git-send-email-zhiyong.yang@intel.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1474452829-58658-1-git-send-email-zhiyong.yang@intel.com> References: <1474452829-58658-1-git-send-email-zhiyong.yang@intel.com> Subject: [dpdk-dev] [PATCH v5 0/2] net/vhost: add pmd xstats support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 08:21:24 -0000 Patch 1 moves all stats counters to a new defined struct vhost_stats, in order to manage all stats counters in a consistent way. Patch 2 adds the pmd xstats support. Changes in V5: Patch 2: for vhost_count_multicast_broadcast, passing struct rte_mbuf *buf instead of struct rte_mbuf **buf and remove the 3th parameter uint16_t count;. Changes in v4: Patch 1: A queue can be only used as TX or RX, So, we can use pkts instead of rx_pkts and tx_pkts, the same to rx_bytes and tx_bytes. Before modification: struct vhost_stats { uint64_t rx_pkts; uint64_t tx_pkts; uint64_t missed_pkts; uint64_t rx_bytes; uint64_t tx_bytes; }; New struct vhost_stats definition as follows: struct vhost_stats { uint64_t pkts; uint64_t bytes; uint64_t missed_pkts; }; Patch 2: 1. add a member VHOST_XSTATS_MAX in enum vhost_xstats_pkts, So, we can define uint64_t xstats[VHOST_XSTATS_MAX]; instead of xstats[16]. 2. restore unicast_packets and update it in the function vhost_dev_xstats_get 3. move the loop out of function vhost_count_multicast_broadcast in order to reduce the computation. Changes in v3: 1. rework the vhost_update_packet_xstats and separate it into two parts. One function deals with the generic packets update, another one deals with increasing the broadcast and multicast with failure packets sent according to RFC2863 page42 ifHCOutMulticastPkts ifHCOutBroadcastPkts. 2. define enum vhost_stat_pkts to replace the magic numbers and enhance the code readability. 3. remove some unnecessary type casts and fix one format issue. Changes in v2: 1. remove the compiling switch. 2. fix two code bugs. --- Zhiyong Yang (2): net/vhost: add a new defined stats struct net/vhost: add pmd xstats drivers/net/vhost/rte_eth_vhost.c | 315 +++++++++++++++++++++++++++++++++++--- 1 file changed, 295 insertions(+), 20 deletions(-) -- 2.5.5