From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8A618A04AF; Thu, 20 Aug 2020 23:40:31 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 878EEAAD5; Thu, 20 Aug 2020 23:40:30 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 921A85F69 for ; Thu, 20 Aug 2020 23:40:28 +0200 (CEST) IronPort-SDR: H/FW6L1j8Xaumzlh9KLCedUzyN+NpogULafXhg5RvXXyd9037f3oXc7z1KC1VuG1Hn1OcE/OJ4 oMH8iz5wrqPw== X-IronPort-AV: E=McAfee;i="6000,8403,9719"; a="219713418" X-IronPort-AV: E=Sophos;i="5.76,334,1592895600"; d="scan'208";a="219713418" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Aug 2020 14:40:26 -0700 IronPort-SDR: bmftxV4+WEE6lhl6yTiEGAlxWOlEGZg+rL1hmGQVJ6N/p5A9V3y0YGys8a/ZXW9FZKDLt3tInw i0h3lPrD9UXQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,334,1592895600"; d="scan'208";a="321038674" Received: from orsmsx603-2.jf.intel.com (HELO ORSMSX603.amr.corp.intel.com) ([10.22.229.83]) by fmsmga004.fm.intel.com with ESMTP; 20 Aug 2020 14:40:26 -0700 Received: from orsmsx603.amr.corp.intel.com (10.22.229.16) by ORSMSX603.amr.corp.intel.com (10.22.229.16) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Thu, 20 Aug 2020 14:40:25 -0700 Received: from orsmsx101.amr.corp.intel.com (10.22.225.128) by orsmsx603.amr.corp.intel.com (10.22.229.16) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256) id 15.1.1713.5 via Frontend Transport; Thu, 20 Aug 2020 14:40:25 -0700 Received: from [10.166.30.253] (10.166.30.253) by ORSMSX101.amr.corp.intel.com (10.22.225.128) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 20 Aug 2020 14:40:24 -0700 To: Fady Bader , CC: , , , , , , , , , , , , References: <20200625133038.25180-1-fady@mellanox.com> <20200811062424.14248-1-fady@mellanox.com> From: Ranjit Menon Message-ID: <3300d1a2-6194-f42b-f1af-4c246feff93b@intel.com> Date: Thu, 20 Aug 2020 14:40:24 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <20200811062424.14248-1-fady@mellanox.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Originating-IP: [10.166.30.253] Subject: Re: [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" On 8/10/2020 11:24 PM, Fady Bader wrote: > 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