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 2F0272142 for ; Wed, 12 Oct 2016 17:03:21 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP; 12 Oct 2016 08:03:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,482,1473145200"; d="scan'208";a="1069482019" Received: from sivswdev01.ir.intel.com (HELO localhost.localdomain) ([10.237.217.45]) by fmsmga002.fm.intel.com with ESMTP; 12 Oct 2016 08:03:18 -0700 From: Bernard Iremonger To: dev@dpdk.org, rahul.r.shah@intel.com, wenzhuo.lu@intel.com, az5157@att.com, pablo.de.lara.guarch@intel.com Cc: Bernard Iremonger Date: Wed, 12 Oct 2016 16:03:14 +0100 Message-Id: <1476284596-30571-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: <1475858784-5303-1-git-send-email-bernard.iremonger@intel.com> References: <1475858784-5303-1-git-send-email-bernard.iremonger@intel.com> Subject: [dpdk-dev] [PATCH v8 0/2] add API's for VF management 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, 12 Oct 2016 15:03:21 -0000 This patchset contains new DPDK API's 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 a DPDK based tool, VFD, has been developed to do this. This patch set adds API extensions to DPDK for 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 v8: rebase to latest master branch. add new API's to testpmd help command. modify testpmd Makefile to build with and without ixgbe PMD, in shared library mode and default mode. Changes in v7: rebase to latest master branch. minor changes to ixgbe PMD following internal review. Changes in v6: rebase to latest master branch. fix ixgbe makefile. move set_vf_vlan_stripq function from ethdev to ixgbe PMD. revise testpmd command for set_vf_vlan_stripq. 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 (2): net/ixgbe: add API's for VF management app/test_pmd: add tests for new API's app/test-pmd/Makefile | 11 + app/test-pmd/cmdline.c | 699 +++++++++++++++++++++++++++- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 62 ++- drivers/net/ixgbe/Makefile | 4 +- drivers/net/ixgbe/ixgbe_ethdev.c | 240 ++++++++++ drivers/net/ixgbe/rte_pmd_ixgbe.h | 182 ++++++++ drivers/net/ixgbe/rte_pmd_ixgbe_version.map | 13 + 7 files changed, 1206 insertions(+), 5 deletions(-) create mode 100644 drivers/net/ixgbe/rte_pmd_ixgbe.h -- 2.9.0