diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2022-01-10 00:47:56 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2022-01-10 16:02:54 -0500 |
commit | a882b5712373171d3bd53cd82ddab4453ddef468 (patch) | |
tree | 151be92354796afa1b297e72c9be22a1a8ba7879 /hw/display | |
parent | a20fa00ce1baa69b29276fa9fab1cdf5235c7ec6 (diff) | |
download | qemu-a882b5712373171d3bd53cd82ddab4453ddef468.zip qemu-a882b5712373171d3bd53cd82ddab4453ddef468.tar.gz qemu-a882b5712373171d3bd53cd82ddab4453ddef468.tar.bz2 |
Revert "virtio: introduce macro IRTIO_CONFIG_IRQ_IDX"
This reverts commit bf1d85c166c19af95dbd27b1faba1d2909732323.
Fixes: bf1d85c166 ("virtio: introduce macro IRTIO_CONFIG_IRQ_IDX")
Cc: "Cindy Lu" <lulu@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/display')
-rw-r--r-- | hw/display/vhost-user-gpu.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/display/vhost-user-gpu.c b/hw/display/vhost-user-gpu.c index d4a440e..0981823 100644 --- a/hw/display/vhost-user-gpu.c +++ b/hw/display/vhost-user-gpu.c @@ -485,9 +485,6 @@ vhost_user_gpu_guest_notifier_pending(VirtIODevice *vdev, int idx) { VhostUserGPU *g = VHOST_USER_GPU(vdev); - if (idx == VIRTIO_CONFIG_IRQ_IDX) { - return false; - } return vhost_virtqueue_pending(&g->vhost->dev, idx); } @@ -496,9 +493,6 @@ vhost_user_gpu_guest_notifier_mask(VirtIODevice *vdev, int idx, bool mask) { VhostUserGPU *g = VHOST_USER_GPU(vdev); - if (idx == VIRTIO_CONFIG_IRQ_IDX) { - return; - } vhost_virtqueue_mask(&g->vhost->dev, vdev, idx, mask); } |