From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZoqoK-0006X7-Lc for qemu-devel@nongnu.org; Wed, 21 Oct 2015 06:40:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZoqoG-0002Cg-GQ for qemu-devel@nongnu.org; Wed, 21 Oct 2015 06:40:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60936) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZoqoG-0002Ca-Bo for qemu-devel@nongnu.org; Wed, 21 Oct 2015 06:39:56 -0400 Date: Wed, 21 Oct 2015 13:39:53 +0300 From: "Michael S. Tsirkin" Message-ID: <20151021133929-mutt-send-email-mst@redhat.com> References: <1445418438-24244-1-git-send-email-yuanhan.liu@linux.intel.com> <1445418438-24244-4-git-send-email-yuanhan.liu@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1445418438-24244-4-git-send-email-yuanhan.liu@linux.intel.com> Subject: Re: [Qemu-devel] [PATCH v2 4/5] Revert "vhost-user: Send VHOST_RESET_OWNER on vhost stop" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Yuanhan Liu Cc: Luke Gorrie , qemu-devel@nongnu.org On Wed, Oct 21, 2015 at 05:07:17PM +0800, Yuanhan Liu wrote: > Don't send VHOST_RESET_OWNER, for as Michael stated: > > Because we need to get the state from remote after stop. > RESET_OWNER discards that, so we can't resume the VM. > > This reverts commit 294ce717e0f212ed0763307f3eab72b4a1bdf4d0. > > Cc: Luke Gorrie > Cc: Michael S. Tsirkin > Signed-off-by: Yuanhan Liu Yes but poking at guest memory after driver is unloaded is even worse. > --- > hw/net/vhost_net.c | 7 ------- > 1 file changed, 7 deletions(-) > > diff --git a/hw/net/vhost_net.c b/hw/net/vhost_net.c > index 804f5c9..95da5f8 100644 > --- a/hw/net/vhost_net.c > +++ b/hw/net/vhost_net.c > @@ -293,13 +293,6 @@ static void vhost_net_stop_one(struct vhost_net *net, > &file); > assert(r >= 0); > } > - } else if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_VHOST_USER) { > - for (file.index = 0; file.index < net->dev.nvqs; ++file.index) { > - const VhostOps *vhost_ops = net->dev.vhost_ops; > - int r = vhost_ops->vhost_call(&net->dev, VHOST_RESET_OWNER, > - NULL); > - assert(r >= 0); > - } > } > if (net->nc->info->poll) { > net->nc->info->poll(net->nc, true); > -- > 1.9.0 >