From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id BA32C37AF for ; Wed, 1 Jul 2015 16:27:18 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP; 01 Jul 2015 07:27:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,386,1432623600"; d="scan'208";a="517226441" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by FMSMGA003.fm.intel.com with ESMTP; 01 Jul 2015 07:27:17 -0700 Received: from irsmsx109.ger.corp.intel.com ([169.254.13.200]) by IRSMSX101.ger.corp.intel.com ([169.254.1.201]) with mapi id 14.03.0224.002; Wed, 1 Jul 2015 15:27:15 +0100 From: "Tahhan, Maryam" To: "dev@dpdk.org" , Olivier MATZ Thread-Topic: [PATCH v3 0/7] Expose IXGBE extended stats to DPDK apps Thread-Index: AQHQsA/3/RpNWOo5V0K09nldmvQD353Gsm/A Date: Wed, 1 Jul 2015 14:27:14 +0000 Message-ID: <1A27633A6DA49C4A92FCD5D4312DBF536A456AC0@IRSMSX109.ger.corp.intel.com> References: <1435323558-169985-1-git-send-email-maryam.tahhan@intel.com> In-Reply-To: <1435323558-169985-1-git-send-email-maryam.tahhan@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 v3 0/7] Expose IXGBE extended stats to DPDK apps 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: Wed, 01 Jul 2015 14:27:19 -0000 > This patch set implements xstats_get() and xstats_reset() in dev_ops for = ixgbe > to expose detailed error statistics to DPDK applications. The dump_cfg > application was extended to demonstrate the usage of retrieving statistic= s for > DPDK interfaces and renamed to proc_info in order reflect this new > functionality. This patch set also removes non generic statistics from th= e > statistics strings at the ethdev level and marks the relevant registers a= s > depricated in struct rte_eth_stats. >=20 > v2: > - Fixed patch dependencies. > - Broke down patches into smaller logical changes. >=20 > v3: > - Removes non-generic stats fields in rte_stats_strings and deprecates > the fields related to them in struct rte_eth_stats. > - Modifies rte_eth_xstats_get() to return generic stats and extended sta= ts. >=20 > Maryam Tahhan (7): > ixgbe: move stats register reads to a new function > ixgbe: add functions to get and reset xstats > ethdev: expose extended error stats > ethdev: remove HW specific stats in stats structs > ixgbe: add NIC specific stats removed from ethdev > app: remove dump_cfg > app: add a new app proc_info >=20 > MAINTAINERS | 4 + > app/Makefile | 2 +- > app/dump_cfg/Makefile | 45 ---- > app/dump_cfg/main.c | 92 ------- > app/proc_info/Makefile | 45 ++++ > app/proc_info/main.c | 512 > +++++++++++++++++++++++++++++++++++++++ > doc/guides/rel_notes/abi.rst | 11 + > drivers/net/ixgbe/ixgbe_ethdev.c | 192 ++++++++++++--- > lib/librte_ether/rte_ethdev.c | 29 ++- > lib/librte_ether/rte_ethdev.h | 30 ++- > mk/rte.sdktest.mk | 4 +- > 11 files changed, 762 insertions(+), 204 deletions(-) delete mode 10064= 4 > app/dump_cfg/Makefile delete mode 100644 app/dump_cfg/main.c create > mode 100644 app/proc_info/Makefile create mode 100644 > app/proc_info/main.c >=20 > -- > 1.9.3 Hi Olivier, I posted a new patch set with the suggested mods. Let me know if there are = any issues. Thanks in advance. Best Regards,=20 Maryam