From: Asias He <asias.hejun@xxxxxxxxx> Increase virtio-blk and virtio-net queue size to 256. This makes virtio-mmio work. Signed-off-by: Asias He <asias.hejun@xxxxxxxxx> --- tools/kvm/virtio/blk.c | 2 +- tools/kvm/virtio/net.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/kvm/virtio/blk.c b/tools/kvm/virtio/blk.c index 145741f..d9e15a9 100644 --- a/tools/kvm/virtio/blk.c +++ b/tools/kvm/virtio/blk.c @@ -25,7 +25,7 @@ * the header and status consume too entries */ #define DISK_SEG_MAX (VIRTIO_BLK_QUEUE_SIZE - 2) -#define VIRTIO_BLK_QUEUE_SIZE 128 +#define VIRTIO_BLK_QUEUE_SIZE 256 #define NUM_VIRT_QUEUES 1 struct blk_dev_req { diff --git a/tools/kvm/virtio/net.c b/tools/kvm/virtio/net.c index d523f61..11581ce 100644 --- a/tools/kvm/virtio/net.c +++ b/tools/kvm/virtio/net.c @@ -26,7 +26,7 @@ #include <sys/wait.h> #include <sys/eventfd.h> -#define VIRTIO_NET_QUEUE_SIZE 128 +#define VIRTIO_NET_QUEUE_SIZE 256 #define VIRTIO_NET_NUM_QUEUES 2 #define VIRTIO_NET_RX_QUEUE 0 #define VIRTIO_NET_TX_QUEUE 1 -- 1.7.7.6 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html