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 93A5D559A for ; Thu, 30 Mar 2017 23:51:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490910688; x=1522446688; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=zhz2ax+V2cYZPnD0zsyRQQ2Zgjxglu/GyX5nDYPo8/o=; b=QH0gUHel9fC6kd9cFvhw6NLWt5jARa1E4FDS2bsPzp8RJccTt+aTResL sd34DynCfEqRD3F3Edlv8tfsCfbX3g==; Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Mar 2017 14:51:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,248,1486454400"; d="scan'208";a="1113791798" Received: from gklab-246-023.igk.intel.com (HELO Sent) ([10.217.246.23]) by orsmga001.jf.intel.com with SMTP; 30 Mar 2017 14:51:16 -0700 Received: by Sent (sSMTP sendmail emulation); Thu, 30 Mar 2017 23:50:48 +0200 From: Michal Jastrzebski To: dev@dpdk.org Date: Thu, 30 Mar 2017 23:50:35 +0200 Message-Id: <1490910640-244285-1-git-send-email-michalx.k.jastrzebski@intel.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2 0/5] Extended xstats API in ethdev library to allow grouping of stats X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Mar 2017 21:51:29 -0000 Extended xstats API in ethdev library to allow grouping of stats logically so they can be retrieved per logical grouping – managed by the application. Changed existing functions rte_eth_xstats_get_names and rte_eth_xstats_get to use a new list of arguments: array of ids and array of values. ABI versioning mechanism was used to support backward compatibility. Introduced two new functions rte_eth_xstats_get_all and rte_eth_xstats_get_names_all which keeps functionality of the previous ones (respectively rte_eth_xstats_get and rte_eth_xstats_get_names) but use new API inside. Both functions marked as deprecated. Introduced new function: rte_eth_xstats_get_id_by_name to retrieve xstats ids by its names. Extended functionality of proc_info application: --xstats-name NAME: to display single xstat value by NAME Updated test-pmd application to use new API. v2 changes: replaced grouping mechanism to use mechanism based on IDs Jacek Piasecki (5): add new xstats API retrieving by id add new xstats API id support for e1000 add new xstats API id support for ixgbe add support for new xstats API retrieving by id add support for new xstats API retrieving by id app/proc_info/main.c | 56 ++++- app/test-pmd/config.c | 18 +- drivers/net/e1000/igb_ethdev.c | 92 ++++++- drivers/net/ixgbe/ixgbe_ethdev.c | 178 ++++++++++++++ lib/librte_ether/Makefile | 2 +- lib/librte_ether/rte_ethdev.c | 435 +++++++++++++++++++++++++-------- lib/librte_ether/rte_ethdev.h | 168 ++++++++++++- lib/librte_ether/rte_ether_version.map | 12 + 8 files changed, 824 insertions(+), 137 deletions(-) -- 1.9.1