From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 87CC22E41 for ; Mon, 12 Dec 2016 17:07:53 +0100 (CET) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga101.fm.intel.com with ESMTP; 12 Dec 2016 08:07:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,337,1477983600"; d="scan'208";a="41449099" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.29]) ([10.237.220.29]) by orsmga005.jf.intel.com with ESMTP; 12 Dec 2016 08:07:50 -0800 To: "Iremonger, Bernard" , "thomas.monjalon@6wind.com" , "dev@dpdk.org" References: <1481304361-16032-1-git-send-email-bernard.iremonger@intel.com> <1481550626-14539-10-git-send-email-bernard.iremonger@intel.com> <9eab7091-fc0a-cc12-3588-64df429cd3b0@intel.com> <8CEF83825BEC744B83065625E567D7C224D06914@IRSMSX108.ger.corp.intel.com> From: Ferruh Yigit Message-ID: <3a36b59a-ca38-845f-ad45-7dc1d37b7fdb@intel.com> Date: Mon, 12 Dec 2016 16:07:50 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <8CEF83825BEC744B83065625E567D7C224D06914@IRSMSX108.ger.corp.intel.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v3 9/9] doc: update release notes 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: Mon, 12 Dec 2016 16:07:53 -0000 On 12/12/2016 3:55 PM, Iremonger, Bernard wrote: > Hi Ferruh, > > >> -----Original Message----- >> From: Yigit, Ferruh >> Sent: Monday, December 12, 2016 3:52 PM >> To: Iremonger, Bernard ; >> thomas.monjalon@6wind.com; dev@dpdk.org >> Subject: Re: [dpdk-dev] [PATCH v3 9/9] doc: update release notes >> >> Hi Bernard, >> >> On 12/12/2016 1:50 PM, Bernard Iremonger wrote: >>> Add release note for removing set VF API's from the ethdev, renaming >>> the API's and moving them to the ixgbe PMD. >> >> Sorry, my bad, I wasn't clear enough. >> >> I was thinking about updating "Shared Library Versions" section of the >> release notes, and increasing the librte_ethdev.so version (from 5 to 6) I >> believe new feature section does not require an update. >> >> If you don't mind I can update library version with previous patch, and you >> don't need to send a new version of the patch. Please let me know. > > Yes, that's fine with me. It seems already increased for this release, by another patch, so no change required there. I will move your release notes changes to "API Changes" section. > > >>> >>> Signed-off-by: Bernard Iremonger >>> --- >>> doc/guides/rel_notes/release_17_02.rst | 20 ++++++++++++++++++++ >>> 1 file changed, 20 insertions(+) >>> >>> diff --git a/doc/guides/rel_notes/release_17_02.rst >>> b/doc/guides/rel_notes/release_17_02.rst >>> index 3b65038..d30b258 100644 >>> --- a/doc/guides/rel_notes/release_17_02.rst >>> +++ b/doc/guides/rel_notes/release_17_02.rst >>> @@ -38,6 +38,26 @@ New Features >>> Also, make sure to start the actual text at the margin. >>> >> ========================================================= >>> >>> +* **Moved five APIs for VF management from the ethdev to the ixgbe >>> +PMD.** >>> + >>> + The following five APIs for VF management from the PF have been >>> + removed from the ethdev, renamed and added to the ixgbe PMD:: >>> + >>> + rte_eth_dev_set_vf_rate_limit >>> + rte_eth_dev_set_vf_rx >>> + rte_eth_dev_set_vf_rxmode >>> + rte_eth_dev_set_vf_tx >>> + rte_eth_dev_set_vf_vlan_filter >>> + >>> + The API's have been renamed to the following:: >>> + >>> + rte_pmd_ixgbe_set_vf_rate_limit >>> + rte_pmd_ixgbe_set_vf_rx >>> + rte_pmd_ixgbe_set_vf_rxmode >>> + rte_pmd_ixgbe_set_vf_tx >>> + rte_pmd_ixgbe_set_vf_vlan_filter >>> + >>> + The declarations for the API’s can be found in ``rte_pmd_ixgbe.h``. >>> >>> Resolved Issues >>> --------------- >>> > Regards, > > Bernard. >