From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <harry.van.haaren@intel.com>
Received: from mga02.intel.com (mga02.intel.com [134.134.136.20])
 by dpdk.org (Postfix) with ESMTP id 705C45949
 for <dev@dpdk.org>; Mon,  2 Nov 2015 11:19:18 +0100 (CET)
Received: from orsmga002.jf.intel.com ([10.7.209.21])
 by orsmga101.jf.intel.com with ESMTP; 02 Nov 2015 02:19:18 -0800
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.20,234,1444719600"; d="scan'208";a="840505363"
Received: from sie-lab-212-222.ir.intel.com (HELO
 silpixa00366884.ir.intel.com) ([10.237.212.222])
 by orsmga002.jf.intel.com with ESMTP; 02 Nov 2015 02:19:16 -0800
From: Harry van Haaren <harry.van.haaren@intel.com>
To: dev@dpdk.org
Date: Mon,  2 Nov 2015 10:18:57 +0000
Message-Id: <1446459547-1754-1-git-send-email-harry.van.haaren@intel.com>
X-Mailer: git-send-email 1.9.1
In-Reply-To: <1446204998-17151-2-git-send-email-harry.van.haaren@intel.com>
References: <1446204998-17151-2-git-send-email-harry.van.haaren@intel.com>
Subject: [dpdk-dev] [PATCH v5 00/10] Port XStats
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 02 Nov 2015 10:19:18 -0000

This patchset adds an implementation of the xstats_get() and xstats_reset() API
to the following PMDs: virtio, igb, igbvf, ixgbe, ixgbevf, i40e, i40evf and
fm10k.

The xstats API allows DPDK apps to gain access to extended statistics from each
port on a NIC. These statistics are structured as per a scheme detailed in the
patch for the doc/prog_guide.

v5: Fix Checkpatch inconsistencies
v4: Consistency of names, refactored Q stat code
v3: Added more stats to PMDs
v2: Send correct patchset

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

 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          | 215 ++++++++++++++++++++++++++-
 drivers/net/i40e/i40e_ethdev_vf.c       |  89 ++++++++++-
 drivers/net/ixgbe/ixgbe_ethdev.c        | 252 ++++++++++++++++++++++++++++----
 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, 1004 insertions(+), 69 deletions(-)

-- 
1.9.1