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 1F0D8A0C53; Wed, 21 Jul 2021 16:32:38 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8ED004068B; Wed, 21 Jul 2021 16:32:37 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 80A3F4014E for ; Wed, 21 Jul 2021 16:32:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1626877955; 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=F36wsqx5rEwJJp+tQYagj7cNnFVRa4vD9WSX8Lf/zfo=; b=c5//jBsPhFkzuIwghmMtieYXrTEH6VgapAOm3NhzDb68rSD0DkPJd90awNd/6CF8H2PdIh /eTz04mKf2lQj4Pa2KsaljwqSsCDaNJtNUud8OUt8C2JFJrqAnnYGhZKHOldwsB5P67uZS AwYbKo7J3SG2C39rSAKuRYbY/RrOwMw= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-600-uHParmetONO9IGfKbBTqEQ-1; Wed, 21 Jul 2021 10:32:34 -0400 X-MC-Unique: uHParmetONO9IGfKbBTqEQ-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 956E7100E324; Wed, 21 Jul 2021 14:32:33 +0000 (UTC) Received: from [10.36.110.10] (unknown [10.36.110.10]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4ADC41002D71; Wed, 21 Jul 2021 14:32:31 +0000 (UTC) To: Cheng Jiang , Chenbo.Xia@intel.com Cc: dev@dpdk.org, jiayu.hu@intel.com, yvonnex.yang@intel.com References: <20210602042802.31943-1-cheng1.jiang@intel.com> <20210719081022.12949-1-cheng1.jiang@intel.com> <20210719081022.12949-4-cheng1.jiang@intel.com> From: Maxime Coquelin Message-ID: Date: Wed, 21 Jul 2021 16:32:29 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 MIME-Version: 1.0 In-Reply-To: <20210719081022.12949-4-cheng1.jiang@intel.com> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 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-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v6 3/5] vhost: handle memory hotplug for async vhost 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 Sender: "dev" On 7/19/21 10:10 AM, Cheng Jiang wrote: > From: Jiayu Hu > > When the guest memory is hotplugged, the vhost application which > enables DMA acceleration must stop DMA transfers before the vhost > re-maps the guest memory. > > This patch is to notify the vhost application of stopping DMA > transfers. > > Signed-off-by: Jiayu Hu > --- > lib/vhost/vhost_user.c | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > Reviewed-by: Maxime Coquelin Thanks, Maxime