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

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