From patchwork Mon Jun 29 13:59:39 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Neil Horman X-Patchwork-Id: 5917 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 1EF4EC4AA; Mon, 29 Jun 2015 16:00:08 +0200 (CEST) Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id 98FBCC478 for ; Mon, 29 Jun 2015 16:00:06 +0200 (CEST) Received: from voip-107-15-76-160.kyn.rr.com ([107.15.76.160] helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1Z9ZbO-00071Y-TJ; Mon, 29 Jun 2015 10:00:05 -0400 From: Neil Horman To: dev@dpdk.org Date: Mon, 29 Jun 2015 09:59:39 -0400 Message-Id: <1435586380-1673-3-git-send-email-nhorman@tuxdriver.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1435586380-1673-1-git-send-email-nhorman@tuxdriver.com> References: <1435088014-18973-1-git-send-email-nhorman@tuxdriver.com> <1435586380-1673-1-git-send-email-nhorman@tuxdriver.com> X-Spam-Score: -2.9 (--) X-Spam-Status: No Subject: [dpdk-dev] [PATCHv4 3/4] rte_compat: remove BASE_SYMBOL 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" BASE_SYMBOL was only here for completelness. DPDK currently doesn't need it, so lets remove it. Signed-off-by: Neil Horman --- lib/librte_compat/rte_compat.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/librte_compat/rte_compat.h b/lib/librte_compat/rte_compat.h index d7768d5..4f60a66 100644 --- a/lib/librte_compat/rte_compat.h +++ b/lib/librte_compat/rte_compat.h @@ -70,13 +70,6 @@ #define VERSION_SYMBOL(b, e, n) __asm__(".symver " RTE_STR(b) RTE_STR(e) ", " RTE_STR(b) "@DPDK_" RTE_STR(n)) /* - * BASE_SYMBOL - * Creates a symbol version table entry binding unversioned symbol - * to the internal function _ - */ -#define BASE_SYMBOL(b, e) __asm__(".symver " RTE_STR(b) RTE_STR(e) ", " RTE_STR(b)"@") - -/* * BIND_DEFAULT_SYMBOL * Creates a symbol version entry instructing the linker to bind references to * symbol to the internal symbol _ @@ -103,7 +96,6 @@ */ #define VERSION_SYMBOL(b, e, v) #define __vsym -#define BASE_SYMBOL(b, n) #define BIND_DEFAULT_SYMBOL(b, e, n) #define MAP_STATIC_SYMBOL(f, p) f __attribute__((alias( RTE_STR(p)))) /*