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 ECABCA0577; Wed, 15 Apr 2020 01:35:12 +0200 (CEST) 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