From patchwork Mon Jan 18 13:22:46 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leyi Rong X-Patchwork-Id: 86804 X-Patchwork-Delegate: ferruh.yigit@amd.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 1B4DDA0A03; Mon, 18 Jan 2021 14:43:32 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 059EE140EC1; Mon, 18 Jan 2021 14:43:32 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id AB36C140EB0 for ; Mon, 18 Jan 2021 14:43:29 +0100 (CET) IronPort-SDR: rWJeU7Y7KEb5+XmMl/0sguxk0hxL3bqyiwYO1gkpEDXe0mnDkFJuyBAitw9FOfVtntyzOWVpql mGSMPV0J6M5g== X-IronPort-AV: E=McAfee;i="6000,8403,9867"; a="166470194" X-IronPort-AV: E=Sophos;i="5.79,356,1602572400"; d="scan'208";a="166470194" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jan 2021 05:43:15 -0800 IronPort-SDR: VYzphH4DDBHWOF/RsEQV6aRJ3FToXXuJG/R8FF0hkhJ2pm3k+67IpocuQSrLsmjAOPWxER/X8w p9KnLytfQXog== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,356,1602572400"; d="scan'208";a="355193730" Received: from dpdk-lrong-srv-04.sh.intel.com ([10.67.119.221]) by fmsmga008.fm.intel.com with ESMTP; 18 Jan 2021 05:43:14 -0800 From: Leyi Rong To: qi.z.zhang@intel.com, ferruh.yigit@intel.com Cc: dev@dpdk.org, Leyi Rong Date: Mon, 18 Jan 2021 21:22:46 +0800 Message-Id: <20210118132246.60208-1-leyi.rong@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH] net/i40e: fix build error on windows 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 Sender: "dev" This patch should squashed into commit ea6ecf3f to fix the build error on windows. Fixes: ea6ecf3f21b0 ("net/i40e: add AVX512 vector path") Signed-off-by: Leyi Rong --- drivers/net/i40e/i40e_rxtx_vec_avx512.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/i40e/i40e_rxtx_vec_avx512.c b/drivers/net/i40e/i40e_rxtx_vec_avx512.c index 43e939c605..e92f97b7ed 100644 --- a/drivers/net/i40e/i40e_rxtx_vec_avx512.c +++ b/drivers/net/i40e/i40e_rxtx_vec_avx512.c @@ -12,7 +12,7 @@ #include "i40e_rxtx.h" #include "i40e_rxtx_vec_common.h" -#include +#include #ifndef __INTEL_COMPILER #pragma GCC diagnostic ignored "-Wcast-qual"