diff options
Diffstat (limited to 'hw')
-rw-r--r-- | hw/virtio.c | 2 | ||||
-rw-r--r-- | hw/virtio.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/hw/virtio.c b/hw/virtio.c index fa7184ab95..7c020a3383 100644 --- a/hw/virtio.c +++ b/hw/virtio.c @@ -75,8 +75,6 @@ struct VirtQueue void (*handle_output)(VirtIODevice *vdev, VirtQueue *vq); }; -#define VIRTIO_PCI_QUEUE_MAX 16 - /* virt queue functions */ static void virtqueue_init(VirtQueue *vq) { diff --git a/hw/virtio.h b/hw/virtio.h index 3994cc973f..7b2b327c99 100644 --- a/hw/virtio.h +++ b/hw/virtio.h @@ -90,7 +90,7 @@ typedef struct { unsigned (*get_features)(void * opaque); } VirtIOBindings; -#define VIRTIO_PCI_QUEUE_MAX 16 +#define VIRTIO_PCI_QUEUE_MAX 64 #define VIRTIO_NO_VECTOR 0xffff |