From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] mempool: fix symbol export Date: Sat, 25 Jun 2016 15:10:57 +0200 Message-ID: <1466860257-4068-1-git-send-email-thomas.monjalon@6wind.com> Cc: dev@dpdk.org To: olivier.matz@6wind.com Return-path: Received: from mail-wm0-f41.google.com (mail-wm0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id 30CC2ADAE for ; Sat, 25 Jun 2016 15:11:03 +0200 (CEST) Received: by mail-wm0-f41.google.com with SMTP id a66so57358389wme.0 for ; Sat, 25 Jun 2016 06:11:03 -0700 (PDT) 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" 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; -- 2.7.0