From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41566) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1azk9v-0007iP-DT for qemu-devel@nongnu.org; Mon, 09 May 2016 08:19:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1azk9t-0006sG-Di for qemu-devel@nongnu.org; Mon, 09 May 2016 08:19:34 -0400 References: <1461333236-5942-1-git-send-email-famz@redhat.com> <1461333236-5942-4-git-send-email-famz@redhat.com> From: Paolo Bonzini Message-ID: <5730804A.80402@redhat.com> Date: Mon, 9 May 2016 14:19:22 +0200 MIME-Version: 1.0 In-Reply-To: <1461333236-5942-4-git-send-email-famz@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 for-2.6 3/5] virtio: Mark host notifiers as external List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng , qemu-devel@nongnu.org Cc: Stefan Hajnoczi , Jeff Cody , Kevin Wolf , Max Reitz , "Michael S. Tsirkin" , qemu-block@nongnu.org On 22/04/2016 15:53, Fam Zheng wrote: > The effect of this change is the block layer drained section can work, > for example when mirror job is being completed. > > Signed-off-by: Fam Zheng For 2.7 I think we should do something else: make non-dataplane virtio-{blk,scsi} use the same code path as dataplane, including usage of virtio_queue_aio_set_host_notifier_handler. The virtio-blk/virtio-scsi ioeventfd can then be added to qemu_get_aio_context() and patch 5 can go (possibly some of the dependencies too). For 2.6 however this was fine. Thanks, Paolo > --- > hw/virtio/virtio.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c > index fffa09f..30ede3d 100644 > --- a/hw/virtio/virtio.c > +++ b/hw/virtio/virtio.c > @@ -1829,10 +1829,10 @@ void virtio_queue_set_host_notifier_fd_handler(VirtQueue *vq, bool assign, > bool set_handler) > { > if (assign && set_handler) { > - event_notifier_set_handler(&vq->host_notifier, false, > + event_notifier_set_handler(&vq->host_notifier, true, > virtio_queue_host_notifier_read); > } else { > - event_notifier_set_handler(&vq->host_notifier, false, NULL); > + event_notifier_set_handler(&vq->host_notifier, true, NULL); > } > if (!assign) { > /* Test and clear notifier before after disabling event, >