From patchwork Wed Oct 30 17:38:27 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 147755 X-Patchwork-Delegate: bruce.richardson@intel.com 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 D930B45C17; Wed, 30 Oct 2024 18:39:03 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 14C7E4347A; Wed, 30 Oct 2024 18:38:46 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.7]) by mails.dpdk.org (Postfix) with ESMTP id 5C25C43467 for ; Wed, 30 Oct 2024 18:38:41 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1730309921; x=1761845921; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=BbiScKjawZdjnrtw3cjSfq6ctAGvfVTWMc93N+Ye7yo=; b=JauWgK17ZavFgxTMezJKdT669g+WdlyBaEGHh2wjT5tQJWTuOOPueeM2 Wkwzouk986mkYCUvhVRXsFelDVUyZD/PHXIqetlXHyNkRcup9fd422KWF +jEJwO1/SWUHZpvkQtl8Y5HPaU3kECOuqKUGsfD3hvfnamacZbrlebrGc 4imwLZg7gUv1Isps9ejQ+jTZ/g7X0UaRbBA9VVuimWWZfcCvEmBjLy3b9 7duLQJz8XQo0grZ3j91mqK4ee2vv+2VzTstWSAW1/s5685xabIMwYEsR5 yfQ96Xs0kgYtX6qOlxlZM1TlX0ph/NNQvM75vMkzGCVvWoP9rfj1p3Rk+ Q==; X-CSE-ConnectionGUID: TZtQzWUSSUKX3DXeY8V4ww== X-CSE-MsgGUID: HUV+6M3YSMCmq7uwm1L15Q== X-IronPort-AV: E=McAfee;i="6700,10204,11241"; a="55430725" X-IronPort-AV: E=Sophos;i="6.11,245,1725346800"; d="scan'208";a="55430725" Received: from fmviesa003.fm.intel.com ([10.60.135.143]) by fmvoesa101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Oct 2024 10:38:40 -0700 X-CSE-ConnectionGUID: dGA5poAwTZGodSfv/VNDUg== X-CSE-MsgGUID: leCPp5Q3RU2vO7doyXhspA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,245,1725346800"; d="scan'208";a="86324593" Received: from silpixa00400496-oob.ir.intel.com (HELO silpixa00401385.ir.intel.com) ([10.237.214.43]) by fmviesa003.fm.intel.com with ESMTP; 30 Oct 2024 10:38:39 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Subject: [PATCH 4/6] net/iavf: remove warning disable flag Date: Wed, 30 Oct 2024 17:38:27 +0000 Message-ID: <20241030173830.881368-5-bruce.richardson@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20241030173830.881368-1-bruce.richardson@intel.com> References: <20241030173830.881368-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 The no-strict-aliasing flag is not needed for the iavf build so remove it. Signed-off-by: Bruce Richardson --- drivers/net/iavf/meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/net/iavf/meson.build b/drivers/net/iavf/meson.build index 27d104cc12..b48bb83438 100644 --- a/drivers/net/iavf/meson.build +++ b/drivers/net/iavf/meson.build @@ -5,8 +5,6 @@ if dpdk_conf.get('RTE_IOVA_IN_MBUF') == 0 subdir_done() endif -cflags += ['-Wno-strict-aliasing'] - includes += include_directories('../../common/iavf') testpmd_sources = files('iavf_testpmd.c')