From patchwork Mon Sep 10 20:04:13 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Boccassi X-Patchwork-Id: 44547 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3664B5F2F; Mon, 10 Sep 2018 22:05:06 +0200 (CEST) Received: from mail-wm0-f67.google.com (mail-wm0-f67.google.com [74.125.82.67]) by dpdk.org (Postfix) with ESMTP id 902C85F2D for ; Mon, 10 Sep 2018 22:05:04 +0200 (CEST) Received: by mail-wm0-f67.google.com with SMTP id o18-v6so22803558wmc.0 for ; Mon, 10 Sep 2018 13:05:04 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=WUH+FA4iuDt5aESNSwt0iCstJfWSGS/CWT4+7h0ShaE=; b=YbmbxQW2twexRd7Ku86Q6Q7dl2oGDDzCoVizr3TWiNrIhLEjhV8YA+/GVXJMZVoiMc EBD1Xvoo4LmE44Xx628RZgwkZeWdj7dZSLLZSDSESaKxJrsb2N8l4vya5tB+9+NLNA3q NFTc95iLWSKKthOp9U2u4GXuqAT763AKI4L0ornT0itT9pKldsWq3Faebs1FSgijdi9C SU7KYIjx3h2I0v4Cx8f0DKB5btt1ECkK1bdBxMR89tZKCgrCvhQx25/6lgzy6ctGcKHX krRhpcebyNM2wEzyAi13X+mmXNy1u0Y2mErl3halOQWURnH/+DEJ07H11WcArNQbZpq7 lP/Q== X-Gm-Message-State: APzg51DpKryrOJV/7/jJz59hp3NvzG56e+wscAzVRzKdi6yeR5Z656aU BHcutPueErGRJfhlwVNIlqIenNJkpfI= X-Google-Smtp-Source: ANB0VdausX3uCbB9VFlA5Eb2YEA68xXDADLFk3KA62m0Ciq27QTqgb0WlH+CiEZToQr7ekRU6+aHTQ== X-Received: by 2002:a1c:4182:: with SMTP id o124-v6mr1904976wma.101.1536609903915; Mon, 10 Sep 2018 13:05:03 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id z13sm18329491wrw.19.2018.09.10.13.05.01 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 10 Sep 2018 13:05:02 -0700 (PDT) From: Luca Boccassi To: dev@dpdk.org Cc: keith.wiles@intel.com, roy.fan.zhang@intel.com, jingjing.wu@intel.com, wenzhuo.lu@intel.com, rasesh.mody@cavium.com, harish.patil@cavium.com, shahed.shaikh@cavium.com, amr.mokhtar@intel.com, shijith.thotton@cavium.com, ssrinivasan@cavium.com, liang.j.ma@intel.com, peter.mccarthy@intel.com, jerin.jacob@caviumnetworks.com, maciej.czekaj@caviumnetworks.com, arybchenko@solarflare.com, antosh.shukla@caviumnetworks.com, ashish.gupta@cavium.com, yongwang@vmware.com, bruce.richardson@intel.com, thomas@monjalon.net Date: Mon, 10 Sep 2018 21:04:13 +0100 Message-Id: <20180910200415.8340-14-bluca@debian.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180910200415.8340-1-bluca@debian.org> References: <20180910200415.8340-1-bluca@debian.org> Subject: [dpdk-dev] [PATCH 13/15] compress/octeontx: rename version map after library file name 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 library is called librte_pmd_octeonx_compress, so rename the map file and set the name in the meson file so that the built library names with meson and legacy makefiles are the same Fixes: 43e610bb8565 ("compress/octeontx: introduce octeontx zip PMD") Cc: stable@dpdk.org Signed-off-by: Luca Boccassi --- drivers/compress/octeontx/Makefile | 2 +- drivers/compress/octeontx/meson.build | 2 +- ...tx_compress_version.map => rte_pmd_octeontx_zip_version.map} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename drivers/compress/octeontx/{rte_pmd_octeontx_compress_version.map => rte_pmd_octeontx_zip_version.map} (100%) diff --git a/drivers/compress/octeontx/Makefile b/drivers/compress/octeontx/Makefile index f34424c87f..0499004402 100644 --- a/drivers/compress/octeontx/Makefile +++ b/drivers/compress/octeontx/Makefile @@ -25,6 +25,6 @@ SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_ZIPVF) += otx_zip_pmd.c SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_ZIPVF) += otx_zip.c # versioning export map -EXPORT_MAP := rte_pmd_octeontx_compress_version.map +EXPORT_MAP := rte_pmd_octeontx_zip_version.map include $(RTE_SDK)/mk/rte.lib.mk diff --git a/drivers/compress/octeontx/meson.build b/drivers/compress/octeontx/meson.build index 7cd202d07a..520d19684b 100644 --- a/drivers/compress/octeontx/meson.build +++ b/drivers/compress/octeontx/meson.build @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Cavium, Inc -name = 'octeontx_compress' +name = 'octeontx_zip' sources = files('otx_zip.c', 'otx_zip_pmd.c') allow_experimental_apis = true includes += include_directories('include') diff --git a/drivers/compress/octeontx/rte_pmd_octeontx_compress_version.map b/drivers/compress/octeontx/rte_pmd_octeontx_zip_version.map similarity index 100% rename from drivers/compress/octeontx/rte_pmd_octeontx_compress_version.map rename to drivers/compress/octeontx/rte_pmd_octeontx_zip_version.map