|
|
26ba25 |
From a36dfa1ce0b98a3144be892ef6ada29deaf9dcf8 Mon Sep 17 00:00:00 2001
|
|
|
26ba25 |
From: Fam Zheng <famz@redhat.com>
|
|
|
26ba25 |
Date: Fri, 29 Jun 2018 06:11:51 +0200
|
|
|
26ba25 |
Subject: [PATCH 177/268] qcow2: Fix src_offset in copy offloading
|
|
|
26ba25 |
|
|
|
26ba25 |
RH-Author: Fam Zheng <famz@redhat.com>
|
|
|
26ba25 |
Message-id: <20180629061153.12687-12-famz@redhat.com>
|
|
|
26ba25 |
Patchwork-id: 81163
|
|
|
26ba25 |
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH v2 11/13] qcow2: Fix src_offset in copy offloading
|
|
|
26ba25 |
Bugzilla: 1482537
|
|
|
26ba25 |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
Not updating src_offset will result in wrong data being written to dst
|
|
|
26ba25 |
image.
|
|
|
26ba25 |
|
|
|
26ba25 |
Reported-by: Max Reitz <mreitz@redhat.com>
|
|
|
26ba25 |
Signed-off-by: Fam Zheng <famz@redhat.com>
|
|
|
26ba25 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
26ba25 |
---
|
|
|
26ba25 |
block/qcow2.c | 1 +
|
|
|
26ba25 |
tests/qemu-iotests/063 | 9 +++++++++
|
|
|
26ba25 |
tests/qemu-iotests/063.out | 12 ++++++++++++
|
|
|
26ba25 |
3 files changed, 22 insertions(+)
|
|
|
26ba25 |
|
|
|
26ba25 |
diff --git a/block/qcow2.c b/block/qcow2.c
|
|
|
26ba25 |
index c85ebcb..4404dc7 100644
|
|
|
26ba25 |
--- a/block/qcow2.c
|
|
|
26ba25 |
+++ b/block/qcow2.c
|
|
|
26ba25 |
@@ -3416,6 +3416,7 @@ qcow2_co_copy_range_to(BlockDriverState *bs,
|
|
|
26ba25 |
}
|
|
|
26ba25 |
|
|
|
26ba25 |
bytes -= cur_bytes;
|
|
|
26ba25 |
+ src_offset += cur_bytes;
|
|
|
26ba25 |
dst_offset += cur_bytes;
|
|
|
26ba25 |
}
|
|
|
26ba25 |
ret = 0;
|
|
|
26ba25 |
diff --git a/tests/qemu-iotests/063 b/tests/qemu-iotests/063
|
|
|
26ba25 |
index e4f6ea9..adc037c 100755
|
|
|
26ba25 |
--- a/tests/qemu-iotests/063
|
|
|
26ba25 |
+++ b/tests/qemu-iotests/063
|
|
|
26ba25 |
@@ -91,6 +91,15 @@ if $QEMU_IMG convert -f $IMGFMT -O $IMGFMT -n "$TEST_IMG.orig" "$TEST_IMG" >/dev
|
|
|
26ba25 |
exit 1
|
|
|
26ba25 |
fi
|
|
|
26ba25 |
|
|
|
26ba25 |
+echo "== Regression testing for copy offloading bug =="
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+_make_test_img 1M
|
|
|
26ba25 |
+TEST_IMG="$TEST_IMG.target" _make_test_img 1M
|
|
|
26ba25 |
+$QEMU_IO -c 'write -P 1 0 512k' -c 'write -P 2 512k 512k' "$TEST_IMG" | _filter_qemu_io
|
|
|
26ba25 |
+$QEMU_IO -c 'write -P 4 512k 512k' -c 'write -P 3 0 512k' "$TEST_IMG.target" | _filter_qemu_io
|
|
|
26ba25 |
+$QEMU_IMG convert -n -O $IMGFMT "$TEST_IMG" "$TEST_IMG.target"
|
|
|
26ba25 |
+$QEMU_IMG compare "$TEST_IMG" "$TEST_IMG.target"
|
|
|
26ba25 |
+
|
|
|
26ba25 |
echo "*** done"
|
|
|
26ba25 |
rm -f $seq.full
|
|
|
26ba25 |
status=0
|
|
|
26ba25 |
diff --git a/tests/qemu-iotests/063.out b/tests/qemu-iotests/063.out
|
|
|
26ba25 |
index de1c99a..7b691b2 100644
|
|
|
26ba25 |
--- a/tests/qemu-iotests/063.out
|
|
|
26ba25 |
+++ b/tests/qemu-iotests/063.out
|
|
|
26ba25 |
@@ -7,4 +7,16 @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4194304
|
|
|
26ba25 |
No errors were found on the image.
|
|
|
26ba25 |
== Testing conversion to a smaller file fails ==
|
|
|
26ba25 |
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=2097152
|
|
|
26ba25 |
+== Regression testing for copy offloading bug ==
|
|
|
26ba25 |
+Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1048576
|
|
|
26ba25 |
+Formatting 'TEST_DIR/t.IMGFMT.target', fmt=IMGFMT size=1048576
|
|
|
26ba25 |
+wrote 524288/524288 bytes at offset 0
|
|
|
26ba25 |
+512 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
26ba25 |
+wrote 524288/524288 bytes at offset 524288
|
|
|
26ba25 |
+512 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
26ba25 |
+wrote 524288/524288 bytes at offset 524288
|
|
|
26ba25 |
+512 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
26ba25 |
+wrote 524288/524288 bytes at offset 0
|
|
|
26ba25 |
+512 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
26ba25 |
+Images are identical.
|
|
|
26ba25 |
*** done
|
|
|
26ba25 |
--
|
|
|
26ba25 |
1.8.3.1
|
|
|
26ba25 |
|