kvm tools: Increase AIO_MAX to 256

The queue size for virtio_blk is 256 and AIO_MAX is 32, we might be
short of available aio events if guest issues > 32 requests
simultaneously. Following error is observed when guest running stressed
I/O workload.

  Info: disk_image__read error: total=-11

To fix this, let's increase the aio events limit.

Signed-off-by: Asias He <asias.hejun@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
Asias He
2012-06-04 23:10:04 +08:00
committed by Will Deacon
parent 2c82d39a08
commit fea74936f1
+1 -1
View File
@@ -6,7 +6,7 @@
#include <sys/eventfd.h>
#include <sys/poll.h>
#define AIO_MAX 32
#define AIO_MAX 256
int debug_iodelay;