From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 9C76E45AE3;
	Tue,  8 Oct 2024 18:54:05 +0200 (CEST)
Received: from mails.dpdk.org (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id 1D62840ED9;
	Tue,  8 Oct 2024 18:53:17 +0200 (CEST)
Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.12])
 by mails.dpdk.org (Postfix) with ESMTP id CC31040E2A
 for <dev@dpdk.org>; Tue,  8 Oct 2024 18:53:11 +0200 (CEST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple;
 d=intel.com; i=@intel.com; q=dns/txt; s=Intel;
 t=1728406392; x=1759942392;
 h=from:to:cc:subject:date:message-id:in-reply-to:
 references:mime-version:content-transfer-encoding;
 bh=Lst06Y65vzNeyqtaSv3LNJfEQUyuATN1vY9ZqmD/D6U=;
 b=TyqFF+8zNhMNrcLAKnrA1P4Dt2OLOp0YmZK9/WGznydOhX8bQ5xTjbtC
 S8vRayQlHeGMjidwrhhaLqF+nP3ZOLvDryVGUW02Iq+L57j7YOerXsius
 7MPZfcajY0QEKm0cKt3XQcd8k0gnhM+1r4Ky+BOvHbQgT8OAMNOZIc9lO
 fnJuiHRj9kmgxxs3WN1POOXfcTpb367sc5NMEZBdOQTncpek9gmNvB6mB
 2jMmABu97B+NuM6+VUI8O4FcUQWRfMt4cf3kQNyNEMvq55RddyvUH5cpF
 VtZT0DuF5EJegw4KgwW97TiGNbhK14E/zkPN/deMu+IH5PyuvxuluPL8h w==;
X-CSE-ConnectionGUID: r4NjuofQTtmDr/hPTEWP4Q==
X-CSE-MsgGUID: nRglYVojRICnb/78dE3z3Q==
X-IronPort-AV: E=McAfee;i="6700,10204,11219"; a="31517021"
X-IronPort-AV: E=Sophos;i="6.11,187,1725346800"; d="scan'208";a="31517021"
Received: from fmviesa003.fm.intel.com ([10.60.135.143])
 by fmvoesa106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;
 08 Oct 2024 09:53:11 -0700
X-CSE-ConnectionGUID: FGnXD74sRXCtLI/h8PXC2w==
X-CSE-MsgGUID: akHZGBavSC6jMdXppMZ6sw==
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="6.11,187,1725346800"; d="scan'208";a="79883055"
Received: from unknown (HELO silpixa00401385.ir.intel.com) ([10.237.214.25])
 by fmviesa003.fm.intel.com with ESMTP; 08 Oct 2024 09:53:11 -0700
From: Bruce Richardson <bruce.richardson@intel.com>
To: dev@dpdk.org
Cc: david.marchand@redhat.com,
	Bruce Richardson <bruce.richardson@intel.com>
Subject: [PATCH v3 08/10] net/idpf: use global AVX-512 variables
Date: Tue,  8 Oct 2024 17:52:56 +0100
Message-ID: <20241008165258.2802099-9-bruce.richardson@intel.com>
X-Mailer: git-send-email 2.43.0
In-Reply-To: <20241008165258.2802099-1-bruce.richardson@intel.com>
References: <20240930175033.2283861-1-bruce.richardson@intel.com>
 <20241008165258.2802099-1-bruce.richardson@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org

Replace per-driver checks for AVX-512 with the standard variables from
config/x86.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/net/idpf/meson.build | 19 ++-----------------
 1 file changed, 2 insertions(+), 17 deletions(-)

diff --git a/drivers/net/idpf/meson.build b/drivers/net/idpf/meson.build
index cf49ef167d..34cbdc4da0 100644
--- a/drivers/net/idpf/meson.build
+++ b/drivers/net/idpf/meson.build
@@ -14,21 +14,6 @@ sources = files(
         'idpf_rxtx.c',
 )
 
-if arch_subdir == 'x86'
-    idpf_avx512_cpu_support = (
-        cc.get_define('__AVX512F__', args: machine_args) != '' and
-        cc.get_define('__AVX512BW__', args: machine_args) != '' and
-        cc.get_define('__AVX512DQ__', args: machine_args) != ''
-    )
-
-    idpf_avx512_cc_support = (
-        not machine_args.contains('-mno-avx512f') and
-        cc.has_argument('-mavx512f') and
-        cc.has_argument('-mavx512bw') and
-        cc.has_argument('-mavx512dq')
-    )
-
-    if idpf_avx512_cpu_support == true or idpf_avx512_cc_support == true
-        cflags += ['-DCC_AVX512_SUPPORT']
-    endif
+if arch_subdir == 'x86'and cc_has_avx512
+    cflags += ['-DCC_AVX512_SUPPORT']
 endif
-- 
2.43.0