From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH] ethdev: remove experimental flag of ports enumeration Date: Wed, 25 Apr 2018 12:11:27 +0100 Message-ID: References: <20180424021511.17430-1-thomas@monjalon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: David Marchand , Thomas Monjalon Return-path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 478D24C91 for ; Wed, 25 Apr 2018 13:11:31 +0200 (CEST) In-Reply-To: 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 4/24/2018 12:59 PM, David Marchand wrote: > On Tue, Apr 24, 2018 at 4:15 AM, Thomas Monjalon wrote: >> The basic operations for ports enumeration should not be >> considered as experimental in DPDK 18.05. >> >> The iterator RTE_ETH_FOREACH_DEV was introduced in DPDK 17.05. >> It uses the function the rte_eth_find_next_owned_by() to get >> only ownerless ports. Its API can be considered stable. >> So the flag experimental is removed from rte_eth_find_next_owned_by(). >> >> The flag experimental is removed from rte_eth_dev_count_avail() >> which is the new name of the old function rte_eth_dev_count(). >> >> The flag experimental is set to rte_eth_dev_count_total() >> in the .c file for consistency with the declaration in the .h file. >> >> A lot of internal applications are fixed to not allow experimental API. >> >> Fixes: 8728ccf37615 ("fix ethdev ports enumeration") >> Fixes: d9a42a69febf ("ethdev: deprecate port count function") >> Fixes: e70e26861eaf ("net/mvpp2: fix build") >> >> Signed-off-by: Thomas Monjalon > > Tested-by: David Marchand Applied to dpdk-next-net/master, thanks. (Fixed tep_termination & vhost sample app build fix by adding -DALLOW_EXPERIMENTAL_API back) > >> It was a really bad idea to keep the iterator macro and function >> as experimental. >> And it was a real mistake of setting the new name of rte_eth_dev_count >> function as experimental. >> >> I think this fix must be merged in 18.05-rc1, in order to avoid >> troubles when testing coming RC1. > > +1 > >