mirror of https://github.com/xemu-project/xemu.git
Revert "block: prevent multiwrite_merge from creating too large iovecs"
This reverts commit 0076bc0c1d
.
Kevin Wolf pointed out that this breaks the mingw32 build.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
a6a853c862
commit
3e39789b64
4
block.c
4
block.c
|
@ -1689,10 +1689,6 @@ static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
|
||||||
merge = bs->drv->bdrv_merge_requests(bs, &reqs[outidx], &reqs[i]);
|
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) {
|
if (merge) {
|
||||||
size_t size;
|
size_t size;
|
||||||
QEMUIOVector *qiov = qemu_mallocz(sizeof(*qiov));
|
QEMUIOVector *qiov = qemu_mallocz(sizeof(*qiov));
|
||||||
|
|
Loading…
Reference in New Issue