]> git.proxmox.com Git - qemu.git/commit
virtio: backend virtqueue notifier masking
authorMichael S. Tsirkin <mst@redhat.com>
Mon, 24 Dec 2012 15:35:27 +0000 (17:35 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 7 Jan 2013 17:42:23 +0000 (19:42 +0200)
commitf1d0f15a6d46bd47e7658e44a004c8898c8cb91e
treed660f5f1ae105ade8db5eb39fa52677990a6e8a5
parent774345f981854b026e24aeb0833311183a8e8067
virtio: backend virtqueue notifier masking

some backends (notably vhost) can mask events
at their source in a way that is more efficient
than masking through kvm.
Specifically
- masking in kvm uses rcu write side so it has high latency
- in kvm on unmask we always send an interrupt
masking at source does not have these issues.

Add such support in virtio.h and use in virtio-pci.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
hw/virtio-pci.c
hw/virtio.h