From patchwork Mon Jun 29 16:35:12 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 5941 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 8E72AC47C; Mon, 29 Jun 2015 18:36:35 +0200 (CEST) Received: from mail-wi0-f170.google.com (mail-wi0-f170.google.com [209.85.212.170]) by dpdk.org (Postfix) with ESMTP id F39D8C47A for ; Mon, 29 Jun 2015 18:36:34 +0200 (CEST) Received: by wiar9 with SMTP id r9so9787621wia.1 for ; Mon, 29 Jun 2015 09:36:34 -0700 (PDT) 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:in-reply-to :references; bh=qcgarTSJKNqThm1psl65+whdyCWfZ28QtNnkOgpdhc0=; b=l5rp4AjPg1MhNTJ7/klkwubsqOmvFrv9E3OSDNGkaiGR1n3K6ki2u/Nn6N4JMk1JH8 WAIpL7lRLXjb+EYcut9ZKHV2EWkIj9EBvnzRg/FmiZA1giBOQxoluwMd91mc4heIXBPg 8AQyKad3ibTPYMfWMDF4HK9cgi+19fZdFwWZd26m6gwCDwFGmEVmgBo5xcWa8Fy92IJg NWe0VB/1CHG+BkBw6pCTPjiUqbhIcQKfG4sEQWKSF51cYucMy8FH5T38q2PoElrmB6go XfEUZq6CPSzH01i+3Uz6JTa2DJ7xB4Mc+f3EnxSjYjryrd+YtLEcpzSFJzUU1vSSeObb i9PA== X-Gm-Message-State: ALoCoQnv6SGsmi4/xbtncx3qER2ZkQN+9HmwGcb+BicMuot+AM3TvkSI+ln7scYiWycbWFpZOb1J X-Received: by 10.194.200.194 with SMTP id ju2mr29418204wjc.61.1435595794860; Mon, 29 Jun 2015 09:36:34 -0700 (PDT) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id ju2sm12896942wid.12.2015.06.29.09.36.32 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 29 Jun 2015 09:36:33 -0700 (PDT) From: Thomas Monjalon To: nhorman@tuxdriver.com Date: Mon, 29 Jun 2015 18:35:12 +0200 Message-Id: <1435595712-18686-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.4.2 In-Reply-To: <20150625122535.GB17026@hmsreliant.think-freely.org> References: <20150625122535.GB17026@hmsreliant.think-freely.org> Cc: dev@dpdk.org Subject: [dpdk-dev] [PATCH] lib: remove redundant definition of local symbols 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The new version nodes inherit from the previous ones which already include a default catch-all line for not exported symbols. Reported-by: Helin Zhang Signed-off-by: Thomas Monjalon --- lib/librte_cmdline/rte_cmdline_version.map | 1 - lib/librte_ether/rte_ether_version.map | 1 - lib/librte_mbuf/rte_mbuf_version.map | 1 - 3 files changed, 3 deletions(-) diff --git a/lib/librte_cmdline/rte_cmdline_version.map b/lib/librte_cmdline/rte_cmdline_version.map index 1b0c863..c9fc18a 100644 --- a/lib/librte_cmdline/rte_cmdline_version.map +++ b/lib/librte_cmdline/rte_cmdline_version.map @@ -75,5 +75,4 @@ DPDK_2.1 { cmdline_poll; - local: *; } DPDK_2.0; diff --git a/lib/librte_ether/rte_ether_version.map b/lib/librte_ether/rte_ether_version.map index 012a82e..e3c8fa1 100644 --- a/lib/librte_ether/rte_ether_version.map +++ b/lib/librte_ether/rte_ether_version.map @@ -111,5 +111,4 @@ DPDK_2.1 { rte_eth_dev_set_mc_addr_list; - local: *; } DPDK_2.0; diff --git a/lib/librte_mbuf/rte_mbuf_version.map b/lib/librte_mbuf/rte_mbuf_version.map index 543dc4c..e10f6bd 100644 --- a/lib/librte_mbuf/rte_mbuf_version.map +++ b/lib/librte_mbuf/rte_mbuf_version.map @@ -17,5 +17,4 @@ DPDK_2.1 { rte_pktmbuf_pool_create; - local: *; } DPDK_2.0;