From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 6AD0B58D8 for ; Wed, 21 Sep 2016 12:20:12 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga104.jf.intel.com with ESMTP; 21 Sep 2016 03:20:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,373,1470726000"; d="scan'208";a="1043626941" Received: from sivswdev01.ir.intel.com (HELO localhost.localdomain) ([10.237.217.45]) by fmsmga001.fm.intel.com with ESMTP; 21 Sep 2016 03:20:10 -0700 From: Bernard Iremonger To: dev@dpdk.org, rahul.r.shah@intel.com, wenzhuo.lu@intel.com, az5157@att.com Cc: Bernard Iremonger Date: Wed, 21 Sep 2016 11:20:01 +0100 Message-Id: <1474453204-31516-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: <1474035333-7496-1-git-send-email-bernard.iremonger@intel.com> References: <1474035333-7496-1-git-send-email-bernard.iremonger@intel.com> Subject: [dpdk-dev] [PATCH v4 0/3] 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, 21 Sep 2016 10:20:12 -0000 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 functions have been added to the eth_dev_ops structure. Corresponding functions have been added to the ixgbe PMD 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. Note: Adding new functions to the eth_dev_ops structure will cause an ABI breakage. Changes in v4: rebase to latest master branch. 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's for VF management net/ixgbe: add functions for VF management app/test_pmd: add tests for new API's app/test-pmd/cmdline.c | 644 ++++++++++++++++++++++++++++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 62 ++- drivers/net/ixgbe/ixgbe_ethdev.c | 138 ++++++ lib/librte_ether/rte_ethdev.c | 169 ++++++++ lib/librte_ether/rte_ethdev.h | 195 ++++++++- lib/librte_ether/rte_ether_version.map | 13 + 6 files changed, 1217 insertions(+), 4 deletions(-) -- 2.9.0