Re: [Qemu-devel] [PATCHv2 for-1.5] virtio-pci: fix level interrupts

2013-05-07 Thread Michael S. Tsirkin
On Tue, May 07, 2013 at 02:20:25PM +0200, KONRAD Frédéric wrote: > On 07/05/2013 12:20, Michael S. Tsirkin wrote: > >mask notifiers are never called without msix, > >so devices with backend masking like vhost don't work. > >Call mask notifiers explicitly at > >startup/cleanup to make it work. > > >

Re: [Qemu-devel] [PATCHv2 for-1.5] virtio-pci: fix level interrupts

2013-05-07 Thread KONRAD Frédéric
On 07/05/2013 12:20, Michael S. Tsirkin wrote: mask notifiers are never called without msix, so devices with backend masking like vhost don't work. Call mask notifiers explicitly at startup/cleanup to make it work. Signed-off-by: Michael S. Tsirkin Tested-by: Alexander Graf --- Changes from v

[Qemu-devel] [PATCHv2 for-1.5] virtio-pci: fix level interrupts

2013-05-07 Thread Michael S. Tsirkin
mask notifiers are never called without msix, so devices with backend masking like vhost don't work. Call mask notifiers explicitly at startup/cleanup to make it work. Signed-off-by: Michael S. Tsirkin Tested-by: Alexander Graf --- Changes from v1: - rebase to master hw/virtio/virtio-pci.