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 EE0E2106A for ; Mon, 12 Dec 2016 16:51:40 +0100 (CET) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP; 12 Dec 2016 07:51:39 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,337,1477983600"; d="scan'208";a="41684871" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.29]) ([10.237.220.29]) by fmsmga006.fm.intel.com with ESMTP; 12 Dec 2016 07:51:38 -0800 To: Bernard Iremonger , 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> From: Ferruh Yigit Message-ID: <9eab7091-fc0a-cc12-3588-64df429cd3b0@intel.com> Date: Mon, 12 Dec 2016 15:51:38 +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: <1481550626-14539-10-git-send-email-bernard.iremonger@intel.com> Content-Type: text/plain; charset=windows-1252 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 15:51:41 -0000 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. > > 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 > --------------- >