From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olivier Matz Subject: Re: [PATCH] mempool: fix symbol export Date: Sat, 25 Jun 2016 18:49:12 +0200 Message-ID: <576EB608.4080502@6wind.com> References: <1466860257-4068-1-git-send-email-thomas.monjalon@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Thomas Monjalon Return-path: Received: from mail.droids-corp.org (zoll.droids-corp.org [94.23.50.67]) by dpdk.org (Postfix) with ESMTP id 0AD7C6CAB for ; Sat, 25 Jun 2016 18:49:24 +0200 (CEST) In-Reply-To: <1466860257-4068-1-git-send-email-thomas.monjalon@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 06/25/2016 03:10 PM, Thomas Monjalon wrote: > Every new symbols in release 16.07 are exported with the version > string DPDK_16.07. > Also remove the empty local: section which is not needed because > inherited from the DPDK_2.0 block. > > Signed-off-by: Thomas Monjalon > --- > lib/librte_mempool/rte_mempool_version.map | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/lib/librte_mempool/rte_mempool_version.map b/lib/librte_mempool/rte_mempool_version.map > index a4a6c1f..9bcbf17 100644 > --- a/lib/librte_mempool/rte_mempool_version.map > +++ b/lib/librte_mempool/rte_mempool_version.map > @@ -16,7 +16,7 @@ DPDK_2.0 { > local: *; > }; > > -DPDK_16.7 { > +DPDK_16.07 { > global: > > rte_mempool_check_cookies; > @@ -33,5 +33,4 @@ DPDK_16.7 { > rte_mempool_register_ops; > rte_mempool_set_ops_byname; > > - local: *; > } DPDK_2.0; > Good catch, thanks Thomas Acked-by: Olivier Matz