Blame SOURCES/kvm-iotests-Test-post-backing-convert-target-behavior.patch

383d26
From 4368733f4cfd8aa424c6f14f950b8e33db6829f2 Mon Sep 17 00:00:00 2001
383d26
From: Max Reitz <mreitz@redhat.com>
383d26
Date: Mon, 18 Jun 2018 18:04:51 +0200
383d26
Subject: [PATCH 13/89] iotests: Test post-backing convert target behavior
383d26
383d26
RH-Author: Max Reitz <mreitz@redhat.com>
383d26
Message-id: <20180618180451.23808-3-mreitz@redhat.com>
383d26
Patchwork-id: 80797
383d26
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 2/2] iotests: Test post-backing convert target behavior
383d26
Bugzilla: 1527898
383d26
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
383d26
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
383d26
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
383d26
383d26
This adds a test case to 122 for what happens when you convert to a
383d26
target with a backing file that is shorter than the target, and the
383d26
image format does not support efficient zero writes (as is the case with
383d26
qcow2 v2).
383d26
383d26
Signed-off-by: Max Reitz <mreitz@redhat.com>
383d26
Message-id: 20180501165750.19242-3-mreitz@redhat.com
383d26
Reviewed-by: Eric Blake <eblake@redhat.com>
383d26
Signed-off-by: Max Reitz <mreitz@redhat.com>
383d26
(cherry picked from commit 0682854f899d03c78befce9f5aae4a7e37655d25)
383d26
Signed-off-by: Max Reitz <mreitz@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 tests/qemu-iotests/122     | 42 ++++++++++++++++++++++++++++++++++++++++++
383d26
 tests/qemu-iotests/122.out | 18 ++++++++++++++++++
383d26
 2 files changed, 60 insertions(+)
383d26
383d26
diff --git a/tests/qemu-iotests/122 b/tests/qemu-iotests/122
383d26
index 45b359c..d8c8ad7 100755
383d26
--- a/tests/qemu-iotests/122
383d26
+++ b/tests/qemu-iotests/122
383d26
@@ -77,6 +77,48 @@ $QEMU_IO -c "read -P 0 0 3M" "$TEST_IMG".orig 2>&1 | _filter_qemu_io | _filter_t
383d26
 
383d26
 
383d26
 echo
383d26
+echo "=== Converting to an overlay larger than its backing file ==="
383d26
+echo
383d26
+
383d26
+TEST_IMG="$TEST_IMG".base _make_test_img 256M
383d26
+# Needs to be at least how much an L2 table covers
383d26
+# (64 kB/entry * 64 kB / 8 B/entry = 512 MB)
383d26
+# That way, qcow2 will yield at least two status request responses.
383d26
+# With just a single response, it would always say "Allocated in the
383d26
+# backing file", so the optimization qemu-img convert tries to do is
383d26
+# done automatically.  Once it has to be queried twice, however (and
383d26
+# one of the queries is completely after the end of the backing file),
383d26
+# the block layer will automatically add a ZERO flag that qemu-img
383d26
+# convert used to follow up with a zero write to the target.
383d26
+# We do not want such a zero write, however, because we are past the
383d26
+# end of the backing file on the target as well, so we do not need to
383d26
+# write anything there.
383d26
+_make_test_img -b "$TEST_IMG".base 768M
383d26
+
383d26
+# Use compat=0.10 as the output so there is no zero cluster support
383d26
+$QEMU_IMG convert -O $IMGFMT -B "$TEST_IMG".base -o compat=0.10 \
383d26
+    "$TEST_IMG" "$TEST_IMG".orig
383d26
+# See that nothing has been allocated past 64M
383d26
+$QEMU_IMG map "$TEST_IMG".orig | _filter_qemu_img_map
383d26
+
383d26
+echo
383d26
+
383d26
+# Just before the end of the backing file
383d26
+$QEMU_IO -c 'write -P 0x11 255M 1M' "$TEST_IMG".base 2>&1 | _filter_qemu_io
383d26
+# Somewhere in the second L2 table
383d26
+$QEMU_IO -c 'write -P 0x22 600M 1M' "$TEST_IMG" 2>&1 | _filter_qemu_io
383d26
+
383d26
+$QEMU_IMG convert -O $IMGFMT -B "$TEST_IMG".base -o compat=0.10 \
383d26
+    "$TEST_IMG" "$TEST_IMG".orig
383d26
+
383d26
+$QEMU_IMG map "$TEST_IMG".orig | _filter_qemu_img_map
383d26
+$QEMU_IO -c 'read -P 0x11 255M 1M' \
383d26
+         -c 'read -P 0x22 600M 1M' \
383d26
+         "$TEST_IMG".orig \
383d26
+    | _filter_qemu_io
383d26
+
383d26
+
383d26
+echo
383d26
 echo "=== Concatenate multiple source images ==="
383d26
 echo
383d26
 
383d26
diff --git a/tests/qemu-iotests/122.out b/tests/qemu-iotests/122.out
383d26
index 47d8656..6c7ee1d 100644
383d26
--- a/tests/qemu-iotests/122.out
383d26
+++ b/tests/qemu-iotests/122.out
383d26
@@ -28,6 +28,24 @@ read 3145728/3145728 bytes at offset 0
383d26
 read 3145728/3145728 bytes at offset 0
383d26
 3 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
383d26
 
383d26
+=== Converting to an overlay larger than its backing file ===
383d26
+
383d26
+Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=268435456
383d26
+Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=805306368 backing_file=TEST_DIR/t.IMGFMT.base
383d26
+Offset          Length          File
383d26
+
383d26
+wrote 1048576/1048576 bytes at offset 267386880
383d26
+1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
383d26
+wrote 1048576/1048576 bytes at offset 629145600
383d26
+1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
383d26
+Offset          Length          File
383d26
+0xff00000       0x100000        TEST_DIR/t.IMGFMT.base
383d26
+0x25800000      0x100000        TEST_DIR/t.IMGFMT.orig
383d26
+read 1048576/1048576 bytes at offset 267386880
383d26
+1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
383d26
+read 1048576/1048576 bytes at offset 629145600
383d26
+1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
383d26
+
383d26
 === Concatenate multiple source images ===
383d26
 
383d26
 Formatting 'TEST_DIR/t.IMGFMT.1', fmt=IMGFMT size=4194304
383d26
-- 
383d26
1.8.3.1
383d26