From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6FCB0A0032; Thu, 17 Feb 2022 09:54:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 03E3840150; Thu, 17 Feb 2022 09:54:28 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 9BACB40042 for ; Thu, 17 Feb 2022 09:54:26 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1645088066; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Jzp2GPJp3bEhRnYnqQqdWD5pc0Ksh4twQWeLS/9yv3I=; b=QDvuejeJuvgWe2i3o/G+BUotj2Uu/b+TFkaAKzwofFE/YaKzI1SlhNiXIociKteRbqT6Mi 34cAQvQVBt404An9VRLixQZFvE9W+ldtDptHSnHDyLAJlI5RASb3m28l0XWXIwDzAIxY0x qKmqHa6Ax9dt8yfM4cDe0lCF1Dxy0fs= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-47-sHULLPvNMTCtIYGrf3k0Dg-1; Thu, 17 Feb 2022 03:54:23 -0500 X-MC-Unique: sHULLPvNMTCtIYGrf3k0Dg-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id A3F77801ADB; Thu, 17 Feb 2022 08:54:21 +0000 (UTC) Received: from [10.39.208.17] (unknown [10.39.208.17]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 943387AB7C; Thu, 17 Feb 2022 08:54:11 +0000 (UTC) Message-ID: <35d535be-88fb-a8f4-93cf-f98e75a19dc4@redhat.com> Date: Thu, 17 Feb 2022 09:54:09 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Subject: Re: [PATCH v4 0/2] vhost: fix async address mapping To: xuan.ding@intel.com, chenbo.xia@intel.com Cc: dev@dpdk.org, ktraynor@redhat.com, ferruh.yigit@intel.com, jiayu.hu@intel.com, yuanx.wang@intel.com References: <20220114161200.114422-1-xuan.ding@intel.com> <20220216022854.39057-1-xuan.ding@intel.com> From: Maxime Coquelin In-Reply-To: <20220216022854.39057-1-xuan.ding@intel.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On 2/16/22 03:28, xuan.ding@intel.com wrote: > From: Xuan Ding > > This patchset fixes the issue of incorrect DMA mapping in PA mode. > Due to the ambiguity of host_phys_addr naming in the guest page > struct, rename it to host_iova. > > v4: > * Fix the patch timezone. > > v3: > * Fix some format issues. > > v2: > * Change the order of patch. > > Xuan Ding (2): > vhost: fix field naming in guest page struct > vhost: fix physical address mapping > > lib/vhost/vhost.h | 11 ++-- > lib/vhost/vhost_user.c | 133 ++++++++++++++++++++--------------------- > lib/vhost/virtio_net.c | 11 ++-- > 3 files changed, 76 insertions(+), 79 deletions(-) > Applied to dpdk-next-virtio/main. Thanks, Maxime