From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernard Iremonger Subject: [PATCH v5 0/3] add API's for VF management Date: Thu, 29 Sep 2016 15:16:28 +0100 Message-ID: <1475158591-2243-1-git-send-email-bernard.iremonger@intel.com> References: <1474453204-31516-1-git-send-email-bernard.iremonger@intel.com> Cc: Bernard Iremonger To: dev@dpdk.org, rahul.r.shah@intel.com, wenzhuo.lu@intel.com, az5157@att.com Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 5C5352C39 for ; Thu, 29 Sep 2016 16:16:44 +0200 (CEST) In-Reply-To: <1474453204-31516-1-git-send-email-bernard.iremonger@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patchset contains new DPDK API's requested by AT&T for use with the Virtual Function Daemon (VFD). The need to configure and manage VF's on a NIC has grown to the point where AT&T have devloped a DPDK based tool, VFD, to do this. This patch set adds API extensions to DPDK VF configuration. Eight new API's have been added for the Intel 82559 NIC. Changes have been made to testpmd to facilitate testing of the new API's. The testpmd documentation has been updated to document the testpmd changes. Changes in v5: rebase to latest master branch. remove new API's from eth_dev_ops structure. add public API's to ixgbe PMD. revise testpmd commands for new API's Changes in v4: The rte_eth_dev_vf_ping API has been dropped as it is a work around for a bug. The rte_eth_dev_set_vf_vlan_strip API has been renamed to rte_eth_dev_set_vf_vlan_stripq. Changes in v3: rebase to latest master branch. drop patches for callback functions revise VF id checks in new librte_ether functions revise testpmd commands for new API's Changes in V2: rebase to latest master branch. fix compile error with clang. Bernard Iremonger (3): librte_ether: add API for VF management net/ixgbe: add API's for VF management app/test_pmd: add tests for new API's app/test-pmd/cmdline.c | 675 ++++++++++++++++++++++++++++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 62 ++- drivers/net/ixgbe/Makefile | 2 + drivers/net/ixgbe/ixgbe_ethdev.c | 200 +++++++++ drivers/net/ixgbe/rte_pmd_ixgbe.h | 162 +++++++ drivers/net/ixgbe/rte_pmd_ixgbe_version.map | 12 + lib/librte_ether/rte_ethdev.c | 27 ++ lib/librte_ether/rte_ethdev.h | 23 +- lib/librte_ether/rte_ether_version.map | 6 + 9 files changed, 1165 insertions(+), 4 deletions(-) create mode 100644 drivers/net/ixgbe/rte_pmd_ixgbe.h -- 2.9.0