]> git.proxmox.com Git - qemu.git/commitdiff
virtio_pci: fix level interrupts with irqfd
authorMichael S. Tsirkin <mst@redhat.com>
Sun, 1 Sep 2013 08:03:45 +0000 (11:03 +0300)
committerMichael S. Tsirkin <mst@redhat.com>
Sun, 1 Sep 2013 08:15:03 +0000 (11:15 +0300)
commit 62c96360ae7f2c7a8b029277fbb7cb082fdef7fd
    virtio-pci: fix level interrupts
only helps systems without irqfd: on systems with irqfd support we
passed in flag requesting irqfd even when msix is disabled.

As a result, for level interrupts we didn't install an fd handler so
unmasking an fd had no effect.

Fix this up.

Cc: qemu-stable@nongnu.org
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
hw/virtio/virtio-pci.c

index d37037ef1738fb53607cccc26e40bf88f3e4bdf5..41b96cef1ee4f370487956f32efebc0242478b54 100644 (file)
@@ -799,8 +799,7 @@ static int virtio_pci_set_guest_notifiers(DeviceState *d, int nvqs, bool assign)
             break;
         }
 
-        r = virtio_pci_set_guest_notifier(d, n, assign,
-                                          kvm_msi_via_irqfd_enabled());
+        r = virtio_pci_set_guest_notifier(d, n, assign, with_irqfd);
         if (r < 0) {
             goto assign_error;
         }