From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 21FEBA0548; Fri, 2 Apr 2021 02:55:00 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E259B141010; Fri, 2 Apr 2021 02:54:51 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 3D7A214100C for ; Fri, 2 Apr 2021 02:54:50 +0200 (CEST) IronPort-SDR: x099ioI2pYdQ8kAqs1BM/+m7f5JPTPIgRHV7dzVCUhVG112lnFwL6geQQ8zCcnDM+APZPDFQhr TgvqC+Ikuv2g== X-IronPort-AV: E=McAfee;i="6000,8403,9941"; a="172394105" X-IronPort-AV: E=Sophos;i="5.81,298,1610438400"; d="scan'208";a="172394105" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Apr 2021 17:54:43 -0700 IronPort-SDR: I9N4Xq41QQNeXyeJX9DVZ5J+a7eTZ9dWSTFXPtK686Di74xTds6t5apFd2Ex/vc1UkVdASUHxK EkbXFUm20a8w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,298,1610438400"; d="scan'208";a="412947665" Received: from win-dpdk-pallavi.jf.intel.com (HELO localhost.localdomain) ([10.166.188.111]) by fmsmga008.fm.intel.com with ESMTP; 01 Apr 2021 17:54:40 -0700 From: Pallavi Kadam To: dev@dpdk.org, thomas@monjalon.net Cc: dmitry.kozliuk@gmail.com, ranjit.menon@intel.com, qiming.yang@intel.com, qi.z.zhang@intel.com, ferruh.yigit@intel.com, pallavi.kadam@intel.com Date: Thu, 1 Apr 2021 18:26:18 -0700 Message-Id: <20210402012621.7944-1-pallavi.kadam@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20210311015848.4976-1-pallavi.kadam@intel.com> References: <20210311015848.4976-1-pallavi.kadam@intel.com> Subject: [dpdk-dev] [PATCH v3 0/3] Support ice PMD 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-set enables building the Intel ice PMD on Windows. v3 changes: - Rebase on latest head - Replaced 'unsigned long long' with 'size_t' - Moved cflag '-fno-asynchronous-unwind-tables' above the assignment "c_args = cflags" - Updated release notes to add ice support on Windows in alphabetical order - Added a note on Windows limitation in ice driver document v2 changes: - Updated patch#1 title to reflect the iavf base code support - Added cflag '-fno-asynchronous-unwind-tables' to base driver - Updated doc patch with the DDP documentation and integrated it with the respective code commit Pallavi Kadam (3): build: enable iavf base code to build on windows net/ice: build on Windows net/ice: disable ice DDP package on Windows doc/guides/nics/features/ice.ini | 1 + doc/guides/nics/ice.rst | 23 +++++++++++++++++++++-- doc/guides/rel_notes/release_21_05.rst | 4 ++++ drivers/common/cpt/meson.build | 6 ++++++ drivers/common/iavf/iavf_osdep.h | 9 +++++++++ drivers/common/meson.build | 3 --- drivers/common/mvep/meson.build | 6 ++++++ drivers/common/octeontx/meson.build | 6 ++++++ drivers/common/octeontx2/meson.build | 6 ++++++ drivers/common/qat/meson.build | 6 ++++++ drivers/net/ice/base/ice_flow.c | 2 +- drivers/net/ice/base/ice_flow.h | 2 +- drivers/net/ice/base/ice_osdep.h | 15 +++++++++++++++ drivers/net/ice/base/ice_switch.c | 2 +- drivers/net/ice/base/ice_vlan_mode.h | 1 + drivers/net/ice/base/meson.build | 5 +++++ drivers/net/ice/ice_dcf_ethdev.c | 1 - drivers/net/ice/ice_dcf_parent.c | 10 +++++----- drivers/net/ice/ice_ethdev.c | 12 +++++++++--- drivers/net/ice/ice_rxtx_vec_avx2.c | 2 +- drivers/net/ice/ice_rxtx_vec_avx512.c | 2 +- drivers/net/ice/meson.build | 10 ++++------ 22 files changed, 109 insertions(+), 25 deletions(-) -- 2.18.0.windows.1