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 EFDD9A04F1; Thu, 18 Jun 2020 21:33:02 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 07C851C014; Thu, 18 Jun 2020 21:33:02 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id EF9211BFF3 for ; Thu, 18 Jun 2020 21:32:59 +0200 (CEST) IronPort-SDR: BH1YVKJfwPIqQU69ci8A8pKu017tnFXYZsTAHJIDRm+C/0FcsID3pzAlQDF6jio8vsC6MQg+8O 8NaDy85StaGw== X-IronPort-AV: E=McAfee;i="6000,8403,9656"; a="141770030" X-IronPort-AV: E=Sophos;i="5.75,252,1589266800"; d="scan'208";a="141770030" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jun 2020 12:32:58 -0700 IronPort-SDR: N6YCQatw+jkeD+KxR1eEK3jZL4ocpOtnPRcrcMhLZXnHlCwsRtcbI127AuhS8vNTehIy+SIX5x L6a9SUlcyCMA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,252,1589266800"; d="scan'208";a="477360202" Received: from orsmsx101.amr.corp.intel.com ([10.22.225.128]) by fmsmga005.fm.intel.com with ESMTP; 18 Jun 2020 12:32:58 -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, 18 Jun 2020 12:32:58 -0700 To: Fady Bader , CC: , , , , , , , References: <20200423144350.4016-2-fady@mellanox.com> <20200618065522.22884-1-fady@mellanox.com> From: Ranjit Menon Message-ID: Date: Thu, 18 Jun 2020 12:32:56 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Thunderbird/68.8.1 MIME-Version: 1.0 In-Reply-To: <20200618065522.22884-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 v10 0/2] eal timer split and implementation for 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 6/17/2020 11:55 PM, Fady Bader wrote: > This patchset splits OS dependent EAL timer functions and implements them for windows. > > v2: > * fixing styles and correctness errors. > v3: > * fixing correctness, get_tsc_freq was reimplemented. > v4: > * rebasing to the new version of "Windows basic memory management" series. > * fixing styles and correctness errors. > v5: > * breaking the dependency on "Windows basic memory management" series. > * fixing correctness errors and warnings. > v6: > * fixing styles and correctness errors. > v7: > * fixing make errors. > v8: > * fixing error handling issue. > * removed unneded headers. > v9: > * rebasing to current master. > * fixing correctness issue. > v10: > * fixing correctness issue. > > Fady Bader (2): > timer: move from common to Unix directory > timer: support EAL functions on Windows > > lib/librte_eal/common/eal_common_timer.c | 22 -------- > lib/librte_eal/common/meson.build | 1 + > lib/librte_eal/freebsd/Makefile | 1 + > lib/librte_eal/linux/Makefile | 1 + > lib/librte_eal/unix/eal_unix_timer.c | 29 ++++++++++ > lib/librte_eal/unix/meson.build | 1 + > lib/librte_eal/windows/eal.c | 6 +++ > lib/librte_eal/windows/eal_timer.c | 93 ++++++++++++++++++++++++++++++++ > lib/librte_eal/windows/include/rte_os.h | 2 + > lib/librte_eal/windows/meson.build | 1 + > 10 files changed, 135 insertions(+), 22 deletions(-) > create mode 100644 lib/librte_eal/unix/eal_unix_timer.c > create mode 100644 lib/librte_eal/windows/eal_timer.c Acked-by: Ranjit Menon