From patchwork Mon Sep 10 20:04:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Boccassi X-Patchwork-Id: 44541 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 904C25B1E; Mon, 10 Sep 2018 22:04:52 +0200 (CEST) Received: from mail-wm0-f66.google.com (mail-wm0-f66.google.com [74.125.82.66]) by dpdk.org (Postfix) with ESMTP id 09CE95592 for ; Mon, 10 Sep 2018 22:04:50 +0200 (CEST) Received: by mail-wm0-f66.google.com with SMTP id f21-v6so22794979wmc.5 for ; Mon, 10 Sep 2018 13:04:50 -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=UnP5f32vufwdrde5lYIQyEPqYWIqpJt0nPi/ETyZW64=; b=qgqJn1fcErv+YQRrL9gZt9yLsvk2XMiduHQ9fPczVBA3pZpbBwtP2MJXTgWIzsPtM4 y1OGNuNgucl8BFzz9N7yo4Ioyy7K0Qucq+dr4Xy77fngioa08enLH6hmukLr0+BK/tha 40OWzWSTb1/ig3d8s0RVKnlHHvZ7TSsoxKrkno1Z7N0OQtxHbFSUDTmj5GAg+mPeHsyY gWmAJB1jOPGg8JUbqqYF7/3iOJBlc60Xj8Ksca3Z+n5s+YzhvU1sdFiy4Zxvs5qpk/At /W8Xdi5hzvIRiRl1Vh8LQY0opoS6bge0MjncypeKREIAaBxLhkXpG3orUQ7YgnBi+tnN nVKw== X-Gm-Message-State: APzg51A9zmFZxsBPblnmrkBe5d1af++xYLqYY/XhtM5unvcWSPJgS5Da ffwyjypnOgC6SwVm5ygnrZ6adVNlWgM= X-Google-Smtp-Source: ANB0VdbCBx8tB7r0EMYec6CqgbEYZ0cKiknYjAGH53oudkA9xedvABmsZX7u5XhHCNQcbHtImMPCcQ== X-Received: by 2002:a1c:168a:: with SMTP id 132-v6mr1869759wmw.13.1536609889531; Mon, 10 Sep 2018 13:04:49 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id s131-v6sm19651475wmf.2.2018.09.10.13.04.48 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 10 Sep 2018 13:04:48 -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:07 +0100 Message-Id: <20180910200415.8340-8-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 07/15] net/liquidio: 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_lio, 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: bad475c03fee ("net/liquidio: add to meson build") Cc: stable@dpdk.org Signed-off-by: Luca Boccassi --- drivers/net/liquidio/Makefile | 2 +- drivers/net/liquidio/meson.build | 1 + .../{rte_pmd_liquidio_version.map => rte_pmd_lio_version.map} | 0 3 files changed, 2 insertions(+), 1 deletion(-) rename drivers/net/liquidio/{rte_pmd_liquidio_version.map => rte_pmd_lio_version.map} (100%) diff --git a/drivers/net/liquidio/Makefile b/drivers/net/liquidio/Makefile index f1092851a9..fc5f18ad63 100644 --- a/drivers/net/liquidio/Makefile +++ b/drivers/net/liquidio/Makefile @@ -15,7 +15,7 @@ LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs LDLIBS += -lrte_bus_pci -EXPORT_MAP := rte_pmd_liquidio_version.map +EXPORT_MAP := rte_pmd_lio_version.map LIBABIVER := 1 diff --git a/drivers/net/liquidio/meson.build b/drivers/net/liquidio/meson.build index 9ae48e2139..83d002f557 100644 --- a/drivers/net/liquidio/meson.build +++ b/drivers/net/liquidio/meson.build @@ -1,6 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation +name = 'lio' sources = files('base/lio_23xx_vf.c', 'base/lio_mbox.c', 'lio_ethdev.c', diff --git a/drivers/net/liquidio/rte_pmd_liquidio_version.map b/drivers/net/liquidio/rte_pmd_lio_version.map similarity index 100% rename from drivers/net/liquidio/rte_pmd_liquidio_version.map rename to drivers/net/liquidio/rte_pmd_lio_version.map