From: Peter Lieven Date: Mon, 30 May 2016 11:31:13 +0000 (+0200) Subject: block/io: optimize bdrv_co_pwritev for small requests X-Git-Tag: TizenStudio_2.0_p4.0~6^2~12^2~6^2~226^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=117bc3fa22d359db6c4f0c10f34c8c9e00ed64af;p=sdk%2Femulator%2Fqemu.git block/io: optimize bdrv_co_pwritev for small requests in a read-modify-write cycle a small request might cause head and tail to fall into the same aligned block. Currently QEMU reads the same block twice in this case which is not necessary. Signed-off-by: Peter Lieven Message-id: 1464607873-28206-1-git-send-email-pl@kamp.de Signed-off-by: Stefan Hajnoczi --- diff --git a/block/io.c b/block/io.c index 7ac9897..e12f303 100644 --- a/block/io.c +++ b/block/io.c @@ -1427,6 +1427,14 @@ int coroutine_fn bdrv_co_pwritev(BlockDriverState *bs, bytes += offset & (align - 1); offset = offset & ~(align - 1); + + /* We have read the tail already if the request is smaller + * than one aligned block. + */ + if (bytes < align) { + qemu_iovec_add(&local_qiov, head_buf + bytes, align - bytes); + bytes = align; + } } if ((offset + bytes) & (align - 1)) { diff --git a/tests/qemu-iotests/077 b/tests/qemu-iotests/077 index 4dc680b..d2d2a2d 100755 --- a/tests/qemu-iotests/077 +++ b/tests/qemu-iotests/077 @@ -60,7 +60,7 @@ EOF # Sequential RMW requests on the same physical sector off=0x1000 -for ev in "head" "after_head" "tail" "after_tail"; do +for ev in "head" "after_head"; do cat <