From: Amit Shah Date: Tue, 19 Jan 2010 19:06:51 +0000 (+0530) Subject: virtio: Remove duplicate macro definition for max. virtqueues, bump up the max X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~8988 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb61564c77ec95b258465c05c8e429a748ff24d9;p=sdk%2Femulator%2Fqemu.git virtio: Remove duplicate macro definition for max. virtqueues, bump up the max VIRTIO_PCI_QUEUE_MAX is redefined in hw/virtio.c. Let's just keep it in hw/virtio.h. Also, bump up the value of the maximum allowed virtqueues to 64. This is in preparation to allow multiple ports per virtio-console device. Signed-off-by: Amit Shah Signed-off-by: Anthony Liguori --- diff --git a/hw/virtio.c b/hw/virtio.c index fa7184a..7c020a3 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 3994cc9..7b2b327 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