From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id DBD643794 for ; Thu, 10 Nov 2016 11:26:44 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 10 Nov 2016 02:26:43 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,618,1473145200"; d="scan'208";a="1057791077" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by orsmga001.jf.intel.com with ESMTP; 10 Nov 2016 02:26:42 -0800 Received: from irsmsx109.ger.corp.intel.com ([169.254.13.122]) by IRSMSX101.ger.corp.intel.com ([163.33.3.153]) with mapi id 14.03.0248.002; Thu, 10 Nov 2016 10:26:42 +0000 From: "Pattan, Reshma" To: "Iremonger, Bernard" CC: "Iremonger, Bernard" , "Mcnamara, John" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v1] doc: announce API and ABI change for librte_ether Thread-Index: AQHSKUTpoAoZHHBIw0ya7/IvjBiFYaDSJsag Date: Thu, 10 Nov 2016 10:26:41 +0000 Message-ID: <3AEA2BF9852C6F48A459DA490692831F010C335F@IRSMSX109.ger.corp.intel.com> References: <1476797888-29698-1-git-send-email-bernard.iremonger@intel.com> In-Reply-To: <1476797888-29698-1-git-send-email-bernard.iremonger@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNTRhYmVmNTUtMjNmNS00N2JiLWIzMGItNDU3M2ExNjA5ODFiIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IkdBTEpPalo0Q3pDbHZrTnVPRlp4N3FhNnlIY1ZMdUYybXBVMDVqZ0pFRzQ9In0= 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 v1] doc: announce API and ABI change for librte_ether X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Nov 2016 10:26:45 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bernard Iremonger > Sent: Tuesday, October 18, 2016 2:38 PM > To: dev@dpdk.org; Mcnamara, John > Cc: Iremonger, Bernard > Subject: [dpdk-dev] [PATCH v1] doc: announce API and ABI change for > librte_ether >=20 > In 17.02 five rte_eth_dev_set_vf_*** functions will be removed from > librte_ether, renamed and moved to the ixgbe PMD. >=20 > Signed-off-by: Bernard Iremonger > --- > doc/guides/rel_notes/deprecation.rst | 36 > ++++++++++++++++++++++++++++++++++++ > 1 file changed, 36 insertions(+) >=20 > diff --git a/doc/guides/rel_notes/deprecation.rst > b/doc/guides/rel_notes/deprecation.rst > index 1d274d8..20e11ac 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -53,3 +53,39 @@ Deprecation Notices > * librte_ether: an API change is planned for 17.02 for the function > ``_rte_eth_dev_callback_process``. In 17.02 the function will return a= n > ``int`` > instead of ``void`` and a fourth parameter ``void *ret_param`` will be > added. > + > +* librte_ether: for 17.02 it is planned to deprecate the following five > functions: > + > + ``rte_eth_dev_set_vf_rxmode`` > + > + ``rte_eth_dev_set_vf_rx`` > + > + ``rte_eth_dev_set_vf_tx`` > + > + ``rte_eth_dev_set_vf_vlan_filter`` > + > + ``rte_eth_set_vf_rate_limit`` > + > + The following fields will be removed from ``struct eth_dev_ops``: > + > + ``eth_set_vf_rx_mode_t`` > + > + ``eth_set_vf_rx_t`` > + > + ``eth_set_vf_tx_t`` > + > + ``eth_set_vf_vlan_filter_t`` > + > + ``eth_set_vf_rate_limit_t`` > + > + The functions will be renamed to the following, and moved to the ``ixg= be`` > PMD. > + > + ``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`` > -- > 2.10.1 Acked-by: Reshma Pattan