From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
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 <dev@dpdk.org>; Sat, 25 Jun 2016 15:11:03 +0200 (CEST)
Received: by mail-wm0-f41.google.com with SMTP id a66so57358389wme.0
 for <dev@dpdk.org>; Sat, 25 Jun 2016 06:11:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=6wind-com.20150623.gappssmtp.com; s=20150623;
 h=from:to:cc:subject:date:message-id;
 bh=aX8kg+ilIAInqf1T00A08kPCGaMf/maZPcPyuXd4J/M=;
 b=yVKfz2ZMwKOm8DrPhwptew3mtHdaUc/wn3WQa/NLcuKcq8jxkaw5DuzWnkxMUl70GF
 EWhCiXcNfyHfAI4QQ8U6PO4dCJsoh0Yh7cY8f7J9i4UA0W5F1uRb1Gp+Bo3tzV5eAtGq
 Tac09YKN0gkzvK2zQwOAtaoC1ygplISCOe9V6nzSxgq976MY8V2tEs3axdLdFli1ra6D
 esa45reTSPAkBgxJpA65Cq/9H+ulTR2II9jyURg+N0b9VX1cwrKvqdlV1RNvCpopxWs4
 vzOCd1IM7H+4fui9PZYV4lQxD2yUNJhu2nzSSbV1CbCFQGBT0NirBleKTKI9t7wshGOV
 ot9Q==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:from:to:cc:subject:date:message-id;
 bh=aX8kg+ilIAInqf1T00A08kPCGaMf/maZPcPyuXd4J/M=;
 b=OYRo9ZcZhJOVs92HlNmFT+FxLGymrSdoPbJ9z0gpsenTtwDep2OYL1vP7hsNMKYEBy
 lKz54Qo6gH1XQ1FHC3VgxKWziZllQqOCYUFvY9r7WpiNnJRXKDkmESS9XleVY9GW3a9m
 SPk6Nib8LPN4XivUautcbNbBJWdXrpNgWWJrIR7AwKgbOCdJU0fv3M92S1AeDg+pHszx
 ve7fLgBBjQkQfUqKoAqJauLkqat7lHJ92TOkIXeF+FKmNQ7CN2MddIDGEVIQmDWTPM04
 ktv4/5VTn92EZF5Fo1qY6BSJU8wZ3XD5LzaA+uGJf4McDSn6RwFHdtMeg7vLo/GdvT0s
 khUQ==
X-Gm-Message-State: ALyK8tJSwYSIM0dsbQHSFPG/d6OZYNEy1P+zCpFMhhrrY5ptNR5fTRxrJ1IB1hNX93cv+XIL
X-Received: by 10.194.145.244 with SMTP id sx20mr9184879wjb.169.1466860262855; 
 Sat, 25 Jun 2016 06:11:02 -0700 (PDT)
Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184])
 by smtp.gmail.com with ESMTPSA id f196sm1569384wmg.15.2016.06.25.06.11.01
 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
 Sat, 25 Jun 2016 06:11:01 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: olivier.matz@6wind.com
Cc: dev@dpdk.org
Date: Sat, 25 Jun 2016 15:10:57 +0200
Message-Id: <1466860257-4068-1-git-send-email-thomas.monjalon@6wind.com>
X-Mailer: git-send-email 2.7.0
Subject: [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 <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Sat, 25 Jun 2016 13:11:03 -0000

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 <thomas.monjalon@6wind.com>
---
 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