From patchwork Thu Apr 19 20:31:45 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ferruh Yigit X-Patchwork-Id: 38585 X-Patchwork-Delegate: ferruh.yigit@amd.com 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 0C9075F6E; Thu, 19 Apr 2018 22:31:51 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id A08455F5D for ; Thu, 19 Apr 2018 22:31:49 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Apr 2018 13:31:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,297,1520924400"; d="scan'208";a="44611638" Received: from silpixa00399777.ir.intel.com (HELO silpixa00399777.ger.corp.intel.com) ([10.237.222.236]) by orsmga003.jf.intel.com with ESMTP; 19 Apr 2018 13:31:46 -0700 From: Ferruh Yigit To: Bruce Richardson , Thomas Monjalon Cc: dev@dpdk.org, Ferruh Yigit , xiao.w.wang@intel.com Date: Thu, 19 Apr 2018 21:31:45 +0100 Message-Id: <20180419203145.129977-1-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.14.3 Subject: [dpdk-dev] [PATCH] config: fix 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" New config option "CONFIG_RTE_MAX_VFIO_CONTAINERS=64" introduced and this config option is used by eal_vfio.c Meson config file, rte_config.h, missing this config option causing build error with meson, fixed by adding missing config. Fixes: 52d790189dcd ("vfio: extend data structure for multi container") Reported-by: Maxime Coquelin Signed-off-by: Ferruh Yigit --- Cc: xiao.w.wang@intel.com --- config/rte_config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/config/rte_config.h b/config/rte_config.h index ed2deb5d7..ec1f562f4 100644 --- a/config/rte_config.h +++ b/config/rte_config.h @@ -32,6 +32,7 @@ #define RTE_LOG_DP_LEVEL RTE_LOG_INFO #define RTE_BACKTRACE 1 #define RTE_EAL_VFIO 1 +#define RTE_MAX_VFIO_CONTAINERS 64 /* bsd module defines */ #define RTE_CONTIGMEM_MAX_NUM_BUFS 64