qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] virtio: Register host notifier handler as external
@ 2016-04-21  2:04 Fam Zheng
  2016-04-21  5:05 ` [Qemu-devel] [PATCH for-2.6] " Fam Zheng
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Fam Zheng @ 2016-04-21  2:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: Michael S. Tsirkin, Paolo Bonzini, Stefan Hajnoczi, Max Reitz

This ensures the bdrv_drained_begin() in block layer is effective and
fixes launchpad bug #1570134.

Signed-off-by: Fam Zheng <famz@redhat.com>
---
 hw/virtio/virtio.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
index f745c4a..002c2c6 100644
--- a/hw/virtio/virtio.c
+++ b/hw/virtio/virtio.c
@@ -1829,10 +1829,11 @@ 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,
-                                   virtio_queue_host_notifier_read);
+        aio_set_event_notifier(qemu_get_aio_context(), &vq->host_notifier,
+                               true, virtio_queue_host_notifier_read);
     } else {
-        event_notifier_set_handler(&vq->host_notifier, NULL);
+        aio_set_event_notifier(qemu_get_aio_context(), &vq->host_notifier,
+                               true, NULL);
     }
     if (!assign) {
         /* Test and clear notifier before after disabling event,
-- 
2.8.0

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2016-05-09 12:32 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-21  2:04 [Qemu-devel] [PATCH] virtio: Register host notifier handler as external Fam Zheng
2016-04-21  5:05 ` [Qemu-devel] [PATCH for-2.6] " Fam Zheng
2016-04-21  8:07   ` Kevin Wolf
2016-04-21  8:57     ` Fam Zheng
2016-04-21 11:42       ` Kevin Wolf
2016-04-21 11:57         ` Fam Zheng
2016-04-21 12:20 ` [Qemu-devel] [PATCH] " Michael S. Tsirkin
2016-04-21 14:28   ` Fam Zheng
2016-05-09 12:32     ` Paolo Bonzini
2016-04-21 16:29 ` Fam Zheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).