From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 25BBC374F for ; Fri, 9 Dec 2016 12:17:55 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP; 09 Dec 2016 03:17:55 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,324,1477983600"; d="scan'208";a="796098306" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by FMSMGA003.fm.intel.com with ESMTP; 09 Dec 2016 03:17:54 -0800 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id uB9BHrSj020604; Fri, 9 Dec 2016 11:17:53 GMT Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id uB9BHr8Y022975; Fri, 9 Dec 2016 11:17:53 GMT Received: (from bairemon@localhost) by sivswdev01.ir.intel.com with œ id uB9BHrEF022965; Fri, 9 Dec 2016 11:17:53 GMT From: Bernard Iremonger To: thomas.monjalon@6wind.com, dev@dpdk.org Cc: Bernard Iremonger Date: Fri, 9 Dec 2016 11:17:44 +0000 Message-Id: <1481282269-22626-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH v1 0/5] 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 11:17:56 -0000 This patchset implements the following deprecation notice: [PATCH v1] doc: announce API and ABI change for librte_ether 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 (5): 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 app/test-pmd/cmdline.c | 270 +++++++++++++++++++++++++++- app/test-pmd/config.c | 31 ++-- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 21 +++ drivers/net/ixgbe/ixgbe_ethdev.c | 263 +++++++++++++++++++++++++++ drivers/net/ixgbe/rte_pmd_ixgbe.h | 104 +++++++++++ drivers/net/ixgbe/rte_pmd_ixgbe_version.map | 10 ++ 6 files changed, 678 insertions(+), 21 deletions(-) -- 2.10.1