From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from was59-1-82-226-113-214.fbx.proxad.net ([82.226.113.214] helo=[192.168.0.10]) by mail.droids-corp.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1bGqo6-0007M0-Te; Sat, 25 Jun 2016 18:51:48 +0200 To: Thomas Monjalon References: <1466860257-4068-1-git-send-email-thomas.monjalon@6wind.com> Cc: dev@dpdk.org From: Olivier Matz Message-ID: <576EB608.4080502@6wind.com> Date: Sat, 25 Jun 2016 18:49:12 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Icedove/38.6.0 MIME-Version: 1.0 In-Reply-To: <1466860257-4068-1-git-send-email-thomas.monjalon@6wind.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] mempool: fix symbol export 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: Sat, 25 Jun 2016 16:49:24 -0000 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