From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCHv4 4/5] dpdk: add __experimental tag to appropriate api calls Date: Thu, 11 Jan 2018 20:06:33 +0000 Message-ID: References: <20171201185628.16261-1-nhorman@tuxdriver.com> <20171213151728.16747-1-nhorman@tuxdriver.com> <20171213151728.16747-5-nhorman@tuxdriver.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Cc: thomas@monjalon.net, john.mcnamara@intel.com, bruce.richardson@intel.com To: Neil Horman , dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 9B893A493 for ; Thu, 11 Jan 2018 21:06:37 +0100 (CET) In-Reply-To: <20171213151728.16747-5-nhorman@tuxdriver.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 12/13/2017 3:17 PM, Neil Horman wrote: > Append the __experimental tag to api calls appearing in the EXPERIMENTAL > section of their libraries version map > > Signed-off-by: Neil Horman > CC: Thomas Monjalon > CC: "Mcnamara, John" > CC: Bruce Richardson > --- > lib/librte_eal/common/eal_common_dev.c | 6 ++- > lib/librte_eal/common/eal_common_devargs.c | 7 +-- > lib/librte_eal/common/include/rte_dev.h | 6 ++- > lib/librte_eal/common/include/rte_devargs.h | 8 ++-- > lib/librte_eal/common/include/rte_service.h | 47 ++++++++++--------- > .../common/include/rte_service_component.h | 14 +++--- > lib/librte_eal/common/rte_service.c | 52 ++++++++++++---------- > lib/librte_eal/linuxapp/eal/eal.c | 1 + > lib/librte_ether/rte_mtr.c | 25 ++++++----- > lib/librte_ether/rte_mtr.h | 26 +++++------ > lib/librte_flow_classify/rte_flow_classify.c | 13 +++--- > lib/librte_flow_classify/rte_flow_classify.h | 11 ++--- > lib/librte_security/rte_security.c | 16 +++---- > lib/librte_security/rte_security.h | 23 +++++----- It may not be the responsibility of this patchset, but there are more experimental APIs in DPDK. Using EXPERIMENTAL tag in linker script is relatively new approach and this was not a requirement, so many experimental APIs are documented in API documentation (header file doxygen comment). Sample: librte_member It is required to scan all header files and update their linker scripts for the experimental APIs. > 14 files changed, 139 insertions(+), 116 deletions(-) <...>