From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51386) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ahxoK-0006qP-0z for qemu-devel@nongnu.org; Mon, 21 Mar 2016 07:15:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ahxoG-0002l5-T4 for qemu-devel@nongnu.org; Mon, 21 Mar 2016 07:15:47 -0400 Received: from e06smtp14.uk.ibm.com ([195.75.94.110]:48798) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ahxoG-0002ji-Iw for qemu-devel@nongnu.org; Mon, 21 Mar 2016 07:15:44 -0400 Received: from localhost by e06smtp14.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 21 Mar 2016 11:15:40 -0000 Date: Mon, 21 Mar 2016 12:15:33 +0100 From: Cornelia Huck Message-ID: <20160321121533.7db7d097.cornelia.huck@de.ibm.com> In-Reply-To: <20160321105718.GA7710@ad.usersys.redhat.com> References: <1458123018-18651-1-git-send-email-famz@redhat.com> <56E9355A.5070700@redhat.com> <56E93A22.1080102@de.ibm.com> <56E93ECE.10103@redhat.com> <56E9425C.8030201@de.ibm.com> <56E957AD.2050005@redhat.com> <56E961EA.4090908@de.ibm.com> <56E9638B.5090204@redhat.com> <20160317003906.GA23821@ad.usersys.redhat.com> <56EA8EEE.2020801@linux.vnet.ibm.com> <20160321105718.GA7710@ad.usersys.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 0/4] Tweaks around virtio-blk start/stop List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: Kevin Wolf , qemu-block@nongnu.org, "Michael S. Tsirkin" , qemu-devel@nongnu.org, tu bo , Stefan Hajnoczi , Paolo Bonzini , Christian Borntraeger On Mon, 21 Mar 2016 18:57:18 +0800 Fam Zheng wrote: > diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c > index 08275a9..47f8043 100644 > --- a/hw/virtio/virtio.c > +++ b/hw/virtio/virtio.c > @@ -1098,7 +1098,14 @@ void virtio_queue_notify_vq(VirtQueue *vq) > > void virtio_queue_notify(VirtIODevice *vdev, int n) > { > - virtio_queue_notify_vq(&vdev->vq[n]); > + VirtQueue *vq = &vdev->vq[n]; > + EventNotifier *n; > + n = virtio_queue_get_host_notifier(vq); > + if (n) { Isn't that always true, even if the notifier has not been setup? > + event_notifier_set(n); > + } else { > + virtio_queue_notify_vq(vq); > + } > } > > uint16_t virtio_queue_vector(VirtIODevice *vdev, int n) > >