From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 397862E83 for ; Fri, 9 Dec 2016 18:26:09 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga105.jf.intel.com with ESMTP; 09 Dec 2016 09:26:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,324,1477983600"; d="scan'208";a="1070136181" Received: from sivswdev01.ir.intel.com (HELO localhost.localdomain) ([10.237.217.45]) by orsmga001.jf.intel.com with ESMTP; 09 Dec 2016 09:26:06 -0800 From: Bernard Iremonger To: thomas.monjalon@6wind.com, dev@dpdk.org Cc: Bernard Iremonger Date: Fri, 9 Dec 2016 17:25:52 +0000 Message-Id: <1481304361-16032-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: <1481282878-26176-1-git-send-email-bernard.iremonger@intel.com> References: <1481282878-26176-1-git-send-email-bernard.iremonger@intel.com> Subject: [dpdk-dev] [PATCH v2 0/9] net/ixgbe: move set VF functions. 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: Fri, 09 Dec 2016 17:26:10 -0000 This patchset implements the following deprecation notice: [PATCH v1] doc: announce API and ABI change for librte_ether Changes in V2: Update testpmd set vf commands help messages. Updated ethtool to use the ixgbe public API's. Removed the ixgbe_set_pool_* and ixgbe_set_vf_rate_limit functions. Removed the rte_eth_dev_set_vf_* API's Removed the deprecation notice. Changes in V1: The following functions from eth_dev_ops have been moved to the ixgbe PMD and renamed: ixgbe_set_pool_rx_mode ixgbe_set_pool_rx ixgbe_set_pool_tx ixgbe_set_pool_vlan_filter ixgbe_set_vf_rate_limit Renamed the functions to the following: rte_pmd_ixgbe_set_vf_rxmode rte_pmd_ixgbe_set_vf_rx rte_pmd_ixgbe_set_vf_tx rte_pmd_ixgbe_set_vf_vlan_filter rte_pmd_ixgbe_set_vf_rate_limit Testpmd has been modified to use the following functions: rte_pmd_ixgbe_set_vf_rxmode rte_pmd_ixgbe_set_vf_rate_limit New testpmd commands have been added to test the following functions: rte_pmd_ixgbe_set_vf_rx rte_pmd_ixgbe_set_vf_tx rte_pmd_ixgbe_set_vf_vlan_filter The testpmd user guide has been updated for the new commands. Bernard Iremonger (9): net/ixgbe: move set VF functions from the ethdev app/testpmd: use ixgbe public functions app/testpmd: add command for set VF VLAN filter app/testpmd: add command for set VF receive app/testpmd: add command for set VF transmit examples/ethtool: use ixgbe public function net/ixgbe: remove static set VF functions librte_ether: remove the set VF API's doc: remove deprecation notice app/test-pmd/cmdline.c | 270 +++++++++++++++- app/test-pmd/config.c | 31 +- doc/guides/rel_notes/deprecation.rst | 13 - doc/guides/testpmd_app_ug/testpmd_funcs.rst | 21 ++ drivers/net/ixgbe/ixgbe_ethdev.c | 459 ++++++++++++++++------------ drivers/net/ixgbe/rte_pmd_ixgbe.h | 104 +++++++ drivers/net/ixgbe/rte_pmd_ixgbe_version.map | 10 + examples/ethtool/lib/rte_ethtool.c | 5 +- lib/librte_ether/rte_ethdev.c | 129 -------- lib/librte_ether/rte_ethdev.h | 33 -- 10 files changed, 683 insertions(+), 392 deletions(-) -- 2.10.1