From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 84195C2BB1D for ; Tue, 14 Apr 2020 23:35:13 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 368FF2072D for ; Tue, 14 Apr 2020 23:35:13 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 368FF2072D Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 646371D177; Wed, 15 Apr 2020 01:35:12 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 306B01D16B for ; Wed, 15 Apr 2020 01:35:10 +0200 (CEST) IronPort-SDR: afEspm/uVVM6xrgsWiY/xIFUyd5bMVaa5auGTe1eNeoapqeqAMmr5gUrHYNncTMBGtMCtkmxkw dKhLenK5QqHw== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Apr 2020 16:35:10 -0700 IronPort-SDR: r8tSctkL9zPXh14yR8BUCGgFYD/LEnV/WZj2vBqkmV9Z9FW9WQX0GZa5nGlrmBtkJGxCJoNSEL oNbsY50BaAGQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,384,1580803200"; d="scan'208";a="245551751" Received: from rmenon-mobl.amr.corp.intel.com (HELO [10.251.15.100]) ([10.251.15.100]) by fmsmga008.fm.intel.com with ESMTP; 14 Apr 2020 16:35:09 -0700 To: Dmitry Kozlyuk , dev@dpdk.org Cc: "Dmitry Malloy (MESHCHANINOV)" , Narcisa Ana Maria Vasile , Fady Bader , Tal Shnaiderman References: <20200410164342.1194634-1-dmitry.kozliuk@gmail.com> <20200414194426.1640704-1-dmitry.kozliuk@gmail.com> <20200414194426.1640704-2-dmitry.kozliuk@gmail.com> From: Ranjit Menon Message-ID: <5cb02f4a-dc99-1f32-47fc-24c76566e22b@intel.com> Date: Tue, 14 Apr 2020 16:35:08 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.7.0 MIME-Version: 1.0 In-Reply-To: <20200414194426.1640704-2-dmitry.kozliuk@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v3 1/1] virt2phys: virtual to physical address translator 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 4/14/2020 12:44 PM, Dmitry Kozlyuk wrote: > This driver supports Windows EAL memory management by translating > current process virtual addresses to physical addresses (IOVA). > Standalone virt2phys allows using DPDK without PMD and provides a > reference implementation. > > Suggested-by: Ranjit Menon > Signed-off-by: Dmitry Kozlyuk > --- > windows/README.rst | 103 +++++++++ > windows/virt2phys/virt2phys.c | 129 +++++++++++ > windows/virt2phys/virt2phys.h | 34 +++ > windows/virt2phys/virt2phys.inf | 64 ++++++ > windows/virt2phys/virt2phys.sln | 27 +++ > windows/virt2phys/virt2phys.vcxproj | 228 ++++++++++++++++++++ > windows/virt2phys/virt2phys.vcxproj.filters | 36 ++++ > 7 files changed, 621 insertions(+) > create mode 100644 windows/README.rst > create mode 100644 windows/virt2phys/virt2phys.c > create mode 100644 windows/virt2phys/virt2phys.h > create mode 100644 windows/virt2phys/virt2phys.inf > create mode 100644 windows/virt2phys/virt2phys.sln > create mode 100644 windows/virt2phys/virt2phys.vcxproj > create mode 100644 windows/virt2phys/virt2phys.vcxproj.filters > Reviewed-by: Ranjit Menon Acked-by: Ranjit Menon