summaryrefslogtreecommitdiff
path: root/qemu-common.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2010-01-26 14:49:08 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2010-01-26 17:08:03 -0600
commite2a305fb13ff0f5cf6ff805555aaa90a5ed5954c (patch)
treee31318d9be44e06a7ae9cda19369236fdbe2bcfc /qemu-common.h
parent6185c5783c50ab5bb4bcdc317772848278cb9bc1 (diff)
downloadqemu-e2a305fb13ff0f5cf6ff805555aaa90a5ed5954c.tar.gz
block: avoid creating too large iovecs in multiwrite_merge
If we go over the maximum number of iovecs support by syscall we get back EINVAL from the kernel which translate to I/O errors for the guest. Add a MAX_IOV defintion for platforms that don't have it. For now we use the same 1024 define that's used on Linux and various other platforms, but until the windows block backend implements some kind of vectored I/O it doesn't matter. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-common.h')
-rw-r--r--qemu-common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h
index ae4f23b8e8..b09f71757a 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -54,6 +54,10 @@ struct iovec {
void *iov_base;
size_t iov_len;
};
+/*
+ * Use the same value as Linux for now.
+ */
+#define IOV_MAX 1024
#else
#include <sys/uio.h>
#endif