From patchwork Mon Sep 17 09:01:24 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Boccassi X-Patchwork-Id: 44783 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 6A4972BE3; Mon, 17 Sep 2018 11:01:36 +0200 (CEST) Received: from mail-wm1-f68.google.com (mail-wm1-f68.google.com [209.85.128.68]) by dpdk.org (Postfix) with ESMTP id CE30F2B9A for ; Mon, 17 Sep 2018 11:01:34 +0200 (CEST) Received: by mail-wm1-f68.google.com with SMTP id s12-v6so8603257wmc.0 for ; Mon, 17 Sep 2018 02:01:34 -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=/dp5MATvQNnSOxUq0UWupJTbRpKSymAdaQY3TgPDIBw=; b=P6LnfO+ngREohzKjMza/wqk+3wvxX7wTFSZbJc8Hxb5k+zSyAVk+mU4DIU+r7YmCzv mNN5vES8DnLKrdj2zMq+Y3eei2OMZBChXfwfsXRhLO4PySmoC3+VXSbsvONHo3agJr58 zk+oqoy0Kdncuu67+OXNLrKpueAc/S7pXws2GQW3QpeDXyLl7oXKrQEQKeULftXEA33H lYCCoLZlgdOGldpoBbQEDt+Z2wBXPLMaNnZ/TRxaKE3bM8yUpZuCL0xBDtxetOP1NYKw FzCVpBDQmrcZMwvXXMx81OWbBSb7czS3eS95yLdAauazxRt/7GeI9UFGwAyGUOVTF2sg X+SA== X-Gm-Message-State: APzg51DBwv0XPKXOnSEpeg+JzJDl0hmhfZDBfVGn927BAkwu5WUj7hVr 27I5gwgufMFLcqPi3dmZQ6Z6tqoF X-Google-Smtp-Source: ANB0Vdbc798C8+KDVyxZCz5nQTZG9Epx2dPOpR16aNLLPs8eYUj0GAVIRcfsgAkhU6uhJSKfprsbDw== X-Received: by 2002:a7b:c096:: with SMTP id r22-v6mr10552235wmh.118.1537174893052; Mon, 17 Sep 2018 02:01:33 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id 142-v6sm5893463wme.35.2018.09.17.02.01.31 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 17 Sep 2018 02:01:31 -0700 (PDT) From: Luca Boccassi To: dev@dpdk.org Cc: bruce.richardson@intel.com Date: Mon, 17 Sep 2018 10:01:24 +0100 Message-Id: <20180917090127.10541-1-bluca@debian.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180831092029.4887-1-bluca@debian.org> References: <20180831092029.4887-1-bluca@debian.org> Subject: [dpdk-dev] [PATCH v3 1/4] build: include missing hypervisor files in Meson build 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" They are built by the legacy makefiles but not by Meson. Fixes: 8f40ee0734c8 ("eal/x86: get hypervisor name") Cc: stable@dpdk.org Signed-off-by: Luca Boccassi Acked-by: Bruce Richardson --- v3: added acked-by and cc stable lib/librte_eal/common/arch/arm/meson.build | 2 +- lib/librte_eal/common/arch/x86/meson.build | 2 +- lib/librte_eal/common/meson.build | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/librte_eal/common/arch/arm/meson.build b/lib/librte_eal/common/arch/arm/meson.build index c6bd92272b..79731e1a2c 100644 --- a/lib/librte_eal/common/arch/arm/meson.build +++ b/lib/librte_eal/common/arch/arm/meson.build @@ -2,4 +2,4 @@ # Copyright(c) 2017 Intel Corporation. eal_common_arch_sources = files('rte_cpuflags.c', - 'rte_cycles.c') + 'rte_cycles.c', 'rte_hypervisor.c') diff --git a/lib/librte_eal/common/arch/x86/meson.build b/lib/librte_eal/common/arch/x86/meson.build index 4e0f77900a..14bf204c6f 100644 --- a/lib/librte_eal/common/arch/x86/meson.build +++ b/lib/librte_eal/common/arch/x86/meson.build @@ -2,4 +2,4 @@ # Copyright(c) 2017 Intel Corporation eal_common_arch_sources = files('rte_spinlock.c', 'rte_cpuflags.c', - 'rte_cycles.c') + 'rte_cycles.c', 'rte_hypervisor.c') diff --git a/lib/librte_eal/common/meson.build b/lib/librte_eal/common/meson.build index 56005bea80..b7fc984997 100644 --- a/lib/librte_eal/common/meson.build +++ b/lib/librte_eal/common/meson.build @@ -14,6 +14,7 @@ common_sources = files( 'eal_common_errno.c', 'eal_common_fbarray.c', 'eal_common_hexdump.c', + 'eal_common_hypervisor.c', 'eal_common_launch.c', 'eal_common_lcore.c', 'eal_common_log.c', @@ -59,6 +60,7 @@ common_headers = files( 'include/rte_errno.h', 'include/rte_fbarray.h', 'include/rte_hexdump.h', + 'include/rte_hypervisor.h', 'include/rte_interrupts.h', 'include/rte_keepalive.h', 'include/rte_launch.h',