From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 77F543DC for ; Tue, 13 Dec 2016 14:46:25 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 13 Dec 2016 05:46:22 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,341,1477983600"; d="scan'208";a="1071524625" Received: from irsmsx104.ger.corp.intel.com ([163.33.3.159]) by orsmga001.jf.intel.com with ESMTP; 13 Dec 2016 05:46:21 -0800 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.159]) by IRSMSX104.ger.corp.intel.com ([169.254.5.52]) with mapi id 14.03.0248.002; Tue, 13 Dec 2016 13:46:20 +0000 From: "Iremonger, Bernard" To: "Yigit, Ferruh" , "thomas.monjalon@6wind.com" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v4 0/7] net/ixgbe: move set VF functions. Thread-Index: AQHSVTXBjMcvtXBbZkCrsNU1/YHRHKEF4XGAgAACisA= Date: Tue, 13 Dec 2016 13:46:20 +0000 Message-ID: <8CEF83825BEC744B83065625E567D7C224D06E94@IRSMSX108.ger.corp.intel.com> References: <1481550626-14539-1-git-send-email-bernard.iremonger@intel.com> <1481629241-19500-1-git-send-email-bernard.iremonger@intel.com> <763dea95-72d3-c182-8da2-e283ae0a4000@intel.com> In-Reply-To: <763dea95-72d3-c182-8da2-e283ae0a4000@intel.com> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNjE0MDZlOTAtYmY4Zi00MGI2LTkwMDQtYTBjN2YxNzY0NThkIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjIuMTEuMCIsIlRydXN0ZWRMYWJlbEhhc2giOiJqVWZwTm5sYVwvU2h5REZqS0FITTk1RFwvM1lKV3ZoOTNDQkpEYVphdWlEbE09In0= x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 0/7] 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: Tue, 13 Dec 2016 13:46:26 -0000 Hi Ferruh, > -----Original Message----- > From: Yigit, Ferruh > Sent: Tuesday, December 13, 2016 1:37 PM > To: Iremonger, Bernard ; > thomas.monjalon@6wind.com; dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v4 0/7] net/ixgbe: move set VF functions. >=20 > On 12/13/2016 11:40 AM, Bernard Iremonger wrote: > > This patchset implements the following deprecation notice: > > [PATCH v1] doc: announce API and ABI change for librte_ether > > > > Changes in V4: > > Fixed compile issues when ixgbe PMD is not present. > > Removed duplicate testpmd commands. > > Added cleanup patch for testpmd. > > Updated release note. > > > > Changes in V3: > > Updated LIBABIVER in Makefile in librte_ether patch. > > Updated rte_ethdev.h and ret_ether_version.map in librte_ether patch. > > Squashed deprecation notice patch into librte_ether patch. > > Added release_note patch. > > > > 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 (7): > > net/ixgbe: move set VF functions from the ethdev > > app/testpmd: use ixgbe public functions > > app/testpmd: cleanup parameter checking > > examples/ethtool: use ixgbe public function > > net/ixgbe: remove static set VF functions > > librte_ether: remove the set VF API's > > doc: update release notes > > >=20 > Series applied to dpdk-next-net/master, thanks. >=20 > Last patch squashed. Thanks. Regards, Bernard.