]> git.proxmox.com Git - mirror_qemu.git/commitdiff
virtio: Mark host notifiers as external
authorFam Zheng <famz@redhat.com>
Fri, 22 Apr 2016 13:53:54 +0000 (21:53 +0800)
committerKevin Wolf <kwolf@redhat.com>
Fri, 22 Apr 2016 14:43:58 +0000 (16:43 +0200)
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 <famz@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
hw/virtio/virtio.c

index fffa09f46cae91bde5958cb1e08389ec83d4093a..30ede3d1cc7bebc8e9eeea006b2af9395498a425 100644 (file)
@@ -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,