From patchwork Tue Aug 11 06:24:19 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fady Bader X-Patchwork-Id: 75355 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3A7A9A04D8; Tue, 11 Aug 2020 08:25:13 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 95A631C00D; Tue, 11 Aug 2020 08:25:12 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 70D974C9D for ; Tue, 11 Aug 2020 08:25:11 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from fady@mellanox.com) with SMTP; 11 Aug 2020 09:25:07 +0300 Received: from l-wincomp04-vm.labs.mlnx (l-wincomp04-vm.mtl.labs.mlnx [10.237.1.5]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 07B6P7ZP029652; Tue, 11 Aug 2020 09:25:07 +0300 From: Fady Bader To: dev@dpdk.org Cc: thomas@monjalon.net, tbashar@mellanox.com, talshn@mellanox.com, yohadt@mellanox.com, dmitry.kozliuk@gmail.com, harini.ramakrishnan@microsoft.com, ocardona@microsoft.com, pallavi.kadam@intel.com, ranjit.menon@intel.com, kevin.laatz@intel.com, ferruh.yigit@intel.com, arybchenko@solarflare.com, ciara.power@intel.com, navasile@linux.microsoft.com Date: Tue, 11 Aug 2020 09:24:19 +0300 Message-Id: <20200811062424.14248-1-fady@mellanox.com> X-Mailer: git-send-email 2.16.1.windows.4 In-Reply-To: <20200625133038.25180-1-fady@mellanox.com> References: <20200625133038.25180-1-fady@mellanox.com> Subject: [dpdk-dev] [PATCH v5 0/5] compiling ethdev lib under windows X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" Added needed changes in order to get ethdev compiling under windows. Depends-on: series-10382 ("compile librte_net for windows") v5: fixed style issues. v4: added comments to #else and fixed code issue. v3: rebased on current master, added more exports to export list v2: fixed logging issue in telemetry lib. Fady Bader (5): eal: added interrupts empty stubs eal: updated export list for Windows ethdev: remove structs from export list telemetry: implement empty stubs for Windows ethdev: compiling ethdev under Windows lib/librte_eal/rte_eal_exports.def | 11 +++++++ lib/librte_eal/windows/eal_interrupts.c | 18 ++++++++++++ lib/librte_eal/windows/meson.build | 1 + lib/librte_ethdev/rte_ethdev_version.map | 2 -- lib/librte_telemetry/rte_telemetry.h | 4 +++ lib/librte_telemetry/telemetry.c | 50 ++++++++++++++++++++++++++++++++ lib/librte_telemetry/telemetry_legacy.c | 25 ++++++++++++++++ lib/meson.build | 3 +- 8 files changed, 111 insertions(+), 3 deletions(-) create mode 100644 lib/librte_eal/windows/eal_interrupts.c Acked-by: Ranjit Menon