summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2010-01-26 14:49:08 +0100
committerAurelien Jarno <aurelien@aurel32.net>2010-04-09 18:41:59 +0200
commitde17c16e1f5e8fe9e69f9f0187c10f47c073d053 (patch)
tree20d635678ac36c62454c9f65ceb67a68a9b63176
parentjson-parser: Fix segfault on malformed input (diff)
downloadqemu-kvm-de17c16e1f5e8fe9e69f9f0187c10f47c073d053.tar.gz
qemu-kvm-de17c16e1f5e8fe9e69f9f0187c10f47c073d053.tar.bz2
qemu-kvm-de17c16e1f5e8fe9e69f9f0187c10f47c073d053.zip
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> (cherry picked from commit e2a305fb13ff0f5cf6ff805555aaa90a5ed5954c) Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r--block.c4
-rw-r--r--qemu-common.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/block.c b/block.c
index 97af3f577..9697dc9c3 100644
--- a/block.c
+++ b/block.c
@@ -1669,6 +1669,10 @@ static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
merge = bs->drv->bdrv_merge_requests(bs, &reqs[outidx], &reqs[i]);
}
+ if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
+ merge = 0;
+ }
+
if (merge) {
size_t size;
QEMUIOVector *qiov = qemu_mallocz(sizeof(*qiov));
diff --git a/qemu-common.h b/qemu-common.h
index d96060adb..a23afbcad 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