From patchwork Thu Aug 31 13:42:42 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 28158 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 252B4325A; Thu, 31 Aug 2017 15:53:51 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 6C644325C for ; Thu, 31 Aug 2017 15:53:49 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga105.jf.intel.com with ESMTP; 31 Aug 2017 06:53:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,453,1498546800"; d="scan'208";a="306555590" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by fmsmga004.fm.intel.com with ESMTP; 31 Aug 2017 06:53:47 -0700 From: Bruce Richardson To: konstantin.ananyev@intel.com, thomas@monjalon.net, john.griffin@intel.com, fiona.trahe@intel.com Cc: dev@dpdk.org, Bruce Richardson Date: Thu, 31 Aug 2017 14:42:42 +0100 Message-Id: <20170831134244.35215-3-bruce.richardson@intel.com> X-Mailer: git-send-email 2.13.5 In-Reply-To: <20170831134244.35215-1-bruce.richardson@intel.com> References: <20170831134244.35215-1-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH 2/4] net/ring: change map filename to standardized value X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The filenames of the linker map files for DPDK PMDs, all follow a standard format: rte_pmd__version.map. The ring version, however, had eth instead of pmd in the name, so was non-standard. By changing this, we no longer need the build system to explicitly be given the name of the mapfile, as it can determine it from the directory name. Signed-off-by: Bruce Richardson --- drivers/net/ring/Makefile | 2 +- drivers/net/ring/{rte_eth_ring_version.map => rte_pmd_ring_version.map} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/net/ring/{rte_eth_ring_version.map => rte_pmd_ring_version.map} (100%) diff --git a/drivers/net/ring/Makefile b/drivers/net/ring/Makefile index b7e1a378a..7ae15ef44 100644 --- a/drivers/net/ring/Makefile +++ b/drivers/net/ring/Makefile @@ -39,7 +39,7 @@ LIB = librte_pmd_ring.a CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) -EXPORT_MAP := rte_eth_ring_version.map +EXPORT_MAP := rte_pmd_ring_version.map LIBABIVER := 2 diff --git a/drivers/net/ring/rte_eth_ring_version.map b/drivers/net/ring/rte_pmd_ring_version.map similarity index 100% rename from drivers/net/ring/rte_eth_ring_version.map rename to drivers/net/ring/rte_pmd_ring_version.map