From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 8469D8E7B for ; Fri, 30 Oct 2015 14:21:35 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 30 Oct 2015 06:21:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,218,1444719600"; d="scan'208";a="838840069" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by orsmga002.jf.intel.com with ESMTP; 30 Oct 2015 06:21:33 -0700 Received: from irsmsx155.ger.corp.intel.com (163.33.192.3) by irsmsx110.ger.corp.intel.com (163.33.3.25) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 30 Oct 2015 13:21:33 +0000 Received: from irsmsx109.ger.corp.intel.com ([169.254.13.139]) by irsmsx155.ger.corp.intel.com ([169.254.14.242]) with mapi id 14.03.0248.002; Fri, 30 Oct 2015 13:21:32 +0000 From: "Tahhan, Maryam" To: "Van Haaren, Harry" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v4 00/10] Port XStats Thread-Index: AQHREwdaYeDmk/3Qj02bsGzdcS9/zp6EBYbw Date: Fri, 30 Oct 2015 13:21:31 +0000 Message-ID: <1A27633A6DA49C4A92FCD5D4312DBF536A5E244E@IRSMSX109.ger.corp.intel.com> References: <1445528914-27636-2-git-send-email-harry.van.haaren@intel.com> <1446204998-17151-1-git-send-email-harry.van.haaren@intel.com> In-Reply-To: <1446204998-17151-1-git-send-email-harry.van.haaren@intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 00/10] Port XStats 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: Fri, 30 Oct 2015 13:21:35 -0000 > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Harry van Haaren > Sent: Friday, October 30, 2015 11:36 AM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v4 00/10] Port XStats >=20 > This patchset adds an implementation of the xstats_get() and xstats_reset= () > API to the following PMDs: virtio, igb, igbvf, ixgbe, ixgbevf, i40e, i40e= vf and > fm10k. >=20 > The xstats API allows DPDK apps to gain access to extended statistics fro= m > each port on a NIC. These statistics are structured as per a scheme detai= led in > the patch for the doc/prog_guide. >=20 > v4: Consistency of names, refactored Q stat code > v3: Added more stats to PMDs > v2: Send correct patchset >=20 > Harry van Haaren (10): > doc: add extended statistics to prog_guide > ethdev: update xstats_get() strings and Q handling > virtio: add xstats() implementation > igb: add xstats() implementation > igbvf: add xstats() implementation > ixgbe: add extended statistic strings > ixgbevf: add xstats() implementation > i40e: add xstats() implementation > i40evf: add xstats() implementation > fm10k: add xstats() implementation >=20 > doc/guides/prog_guide/poll_mode_drv.rst | 51 ++++++- > doc/guides/rel_notes/release_2_2.rst | 14 ++ > drivers/net/e1000/igb_ethdev.c | 193 ++++++++++++++++++++++-- > drivers/net/fm10k/fm10k_ethdev.c | 87 +++++++++++ > drivers/net/i40e/i40e_ethdev.c | 217 > ++++++++++++++++++++++++++- > drivers/net/i40e/i40e_ethdev_vf.c | 89 ++++++++++- > drivers/net/ixgbe/ixgbe_ethdev.c | 254 > +++++++++++++++++++++++++++----- > drivers/net/virtio/virtio_ethdev.c | 98 +++++++++++- > drivers/net/virtio/virtio_rxtx.c | 32 ++++ > drivers/net/virtio/virtqueue.h | 4 + > lib/librte_ether/rte_ethdev.c | 38 +++-- > 11 files changed, 1006 insertions(+), 71 deletions(-) >=20 > -- > 1.9.1 Series-acked-by: Maryam Tahhan