From patchwork Tue Jun 13 15:33:31 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 128628 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1750042CA5; Tue, 13 Jun 2023 17:33:49 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D604540ED6; Tue, 13 Jun 2023 17:33:48 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 074EE40FAE for ; Tue, 13 Jun 2023 17:33:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1686670427; x=1718206427; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=oDC9nA5Vzi9t6XsZdQGlv4IdgjrDzvPNErt9FAbZOCA=; b=RhD98fWbZkgUJY8SCCLGXftcI1eSRPKFXXULSRm0hq/g6490QZCLoGgg Kc/APdAN/p4ig+zpWQoTjVqMM9CE8NlR/1yN7mJ+HsE+kKv94Kgl6IBGg 2u1aPzVo3aASI6LvtjdTL6HBQB+ckPff7bsWUbQp/r3XR7qVkcK//LxFm JYGWLFm8rtZyc4kYfdakgTncdRwCi011NZwv2+iXIW9r+6fSNKlffASqT ONkTuKpJ4x3706fctO9RQ6ZTzPl3hHZJUu/XBsgpWJjff2RSj7ROGciMz yNNIwSHQ9mgvasYsfHc2dsY5uSfH3jUwiWd7nMGd1RzIfrmv9sFdhZSrY A==; X-IronPort-AV: E=McAfee;i="6600,9927,10740"; a="358366146" X-IronPort-AV: E=Sophos;i="6.00,240,1681196400"; d="scan'208";a="358366146" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Jun 2023 08:33:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10740"; a="856137364" X-IronPort-AV: E=Sophos;i="6.00,240,1681196400"; d="scan'208";a="856137364" Received: from silpixa00401385.ir.intel.com ([10.237.214.11]) by fmsmga001.fm.intel.com with ESMTP; 13 Jun 2023 08:33:39 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Subject: [PATCH v3 0/2] replace int flags with booleans Date: Tue, 13 Jun 2023 16:33:31 +0100 Message-Id: <20230613153333.164365-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230612162104.170749-1-bruce.richardson@intel.com> References: <20230612162104.170749-1-bruce.richardson@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org in meson.build files, some flags were being treated as integers rather than using the more logical option of booleans. Fix this. V3: drop the patch requiring libnuma from this set, to make this only a simple set changing the types of the flag. The other patch will be submitted separately for better tracking. Bruce Richardson (2): build: change NUMA flag variable type to boolean build: change libfdt flag variable type to boolean config/arm/meson.build | 2 +- config/meson.build | 8 ++++---- drivers/net/ipn3ke/meson.build | 2 +- drivers/raw/ifpga/meson.build | 2 +- lib/eal/linux/meson.build | 2 +- lib/vhost/meson.build | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) --- 2.39.2