From patchwork Mon Sep 10 20:04:14 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Boccassi X-Patchwork-Id: 44548 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 1630F5F3C; Mon, 10 Sep 2018 22:05:10 +0200 (CEST) Received: from mail-wr1-f66.google.com (mail-wr1-f66.google.com [209.85.221.66]) by dpdk.org (Postfix) with ESMTP id E89395F34 for ; Mon, 10 Sep 2018 22:05:07 +0200 (CEST) Received: by mail-wr1-f66.google.com with SMTP id e1-v6so14203973wrt.3 for ; Mon, 10 Sep 2018 13:05:07 -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=OgqA3pAppsA8jw+BNLHwLMLopskz9fUmcQtGwC6OE5M=; b=XSjtAcqMGs3FbwavW+jW+kioJzuufSJBatztf/X2/Ei1sIezfiFpFiI1v2e0NLh5QU GVWZ3QWl/Xo/JSovAsCOozXQHeY4AdQCyREgyZ1pgW8yiCb1lVi5+t7Hj4hGkla2xLTf hlCnoZZpcbr/ZYSJC/B4ClU7U+R/BekeMCBCIExI+hh3LGxk6YihTkIFqaodH4ZwIiZQ kHH32vYN90mJMy/GtGVUxytc65Tlxti/xiTSMlqlN2n1g5woJkk7bJHlyFzN5wp+LG1o ZnpEafTzcKjiXIIxet8cWyp23mhaW4nlws0mqQK7zeDhv5GQ5AFNJqL1tO1klx2x+dn+ diKw== X-Gm-Message-State: APzg51CHSiShPSDLLLYPVrWs284rvit8WL6WLb3lLMKKylbSqJ+BZDtM MpD28PebMT3CTeNeQtJaP85Hvfht9yY= X-Google-Smtp-Source: ANB0Vdaj2GpGzTHwnV8mluLkkrmm9z3kM5r1d4rRqbJHcwrFPteA+CMWuMOWeNpCtKTo/ivID+cIPQ== X-Received: by 2002:adf:9081:: with SMTP id i1-v6mr17069308wri.271.1536609906567; Mon, 10 Sep 2018 13:05:06 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id 1-v6sm28429893wmf.47.2018.09.10.13.05.04 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 10 Sep 2018 13:05:05 -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:14 +0100 Message-Id: <20180910200415.8340-15-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 14/15] net/vmxnet3: 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_vmxnet3_uio, 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 Signed-off-by: Luca Boccassi --- drivers/net/vmxnet3/Makefile | 2 +- ..._pmd_vmxnet3_version.map => rte_pmd_vmxnet3_uio_version.map} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/net/vmxnet3/{rte_pmd_vmxnet3_version.map => rte_pmd_vmxnet3_uio_version.map} (100%) diff --git a/drivers/net/vmxnet3/Makefile b/drivers/net/vmxnet3/Makefile index f1141da674..9848cd224f 100644 --- a/drivers/net/vmxnet3/Makefile +++ b/drivers/net/vmxnet3/Makefile @@ -43,7 +43,7 @@ LDLIBS += -lrte_bus_pci VPATH += $(SRCDIR)/base -EXPORT_MAP := rte_pmd_vmxnet3_version.map +EXPORT_MAP := rte_pmd_vmxnet3_uio_version.map LIBABIVER := 1 diff --git a/drivers/net/vmxnet3/rte_pmd_vmxnet3_version.map b/drivers/net/vmxnet3/rte_pmd_vmxnet3_uio_version.map similarity index 100% rename from drivers/net/vmxnet3/rte_pmd_vmxnet3_version.map rename to drivers/net/vmxnet3/rte_pmd_vmxnet3_uio_version.map