|
|
b38b0f |
From 6f5c54a54c05143cf9f69a626b398886d1c51358 Mon Sep 17 00:00:00 2001
|
|
|
b38b0f |
From: Thomas Huth <thuth@redhat.com>
|
|
|
b38b0f |
Date: Fri, 30 Aug 2019 12:56:25 +0100
|
|
|
b38b0f |
Subject: [PATCH 07/10] iotests: Tweak 221 sizing for different hole
|
|
|
b38b0f |
granularities
|
|
|
b38b0f |
|
|
|
b38b0f |
RH-Author: Thomas Huth <thuth@redhat.com>
|
|
|
b38b0f |
Message-id: <20190830125628.23668-3-thuth@redhat.com>
|
|
|
b38b0f |
Patchwork-id: 90213
|
|
|
b38b0f |
O-Subject: [RHEL-8.1.0 qemu-kvm PATCH v2 2/5] iotests: Tweak 221 sizing for different hole granularities
|
|
|
b38b0f |
Bugzilla: 1738839
|
|
|
b38b0f |
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
b38b0f |
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
b38b0f |
RH-Acked-by: David Hildenbrand <david@redhat.com>
|
|
|
b38b0f |
|
|
|
b38b0f |
From: Eric Blake <eblake@redhat.com>
|
|
|
b38b0f |
|
|
|
b38b0f |
For some particular configurations of ext4, sizing an image to 84
|
|
|
b38b0f |
sectors + 1 byte causes test failures when the size of the hole is
|
|
|
b38b0f |
rounded to a 4k alignment. Let's instead size things to 128 sectors +
|
|
|
b38b0f |
1 byte, as the 64k boundary is more likely to work with various hole
|
|
|
b38b0f |
granularities.
|
|
|
b38b0f |
|
|
|
b38b0f |
Reported-by: Thomas Huth <thuth@redhat.com>
|
|
|
b38b0f |
Signed-off-by: Eric Blake <eblake@redhat.com>
|
|
|
b38b0f |
Message-Id: <20190506172111.31594-1-eblake@redhat.com>
|
|
|
b38b0f |
Tested-by: Thomas Huth <thuth@redhat.com>
|
|
|
b38b0f |
(cherry picked from commit d3192de752cd6d383d38e50341b39d9550d21fa8)
|
|
|
b38b0f |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
b38b0f |
---
|
|
|
b38b0f |
tests/qemu-iotests/221 | 10 +++++-----
|
|
|
b38b0f |
tests/qemu-iotests/221.out | 20 ++++++++++----------
|
|
|
b38b0f |
2 files changed, 15 insertions(+), 15 deletions(-)
|
|
|
b38b0f |
|
|
|
b38b0f |
diff --git a/tests/qemu-iotests/221 b/tests/qemu-iotests/221
|
|
|
b38b0f |
index 2cc29ba..75aa192 100755
|
|
|
b38b0f |
--- a/tests/qemu-iotests/221
|
|
|
b38b0f |
+++ b/tests/qemu-iotests/221
|
|
|
b38b0f |
@@ -3,7 +3,7 @@
|
|
|
b38b0f |
# Test qemu-img vs. unaligned images
|
|
|
b38b0f |
# (See also 253, which is the O_DIRECT version)
|
|
|
b38b0f |
#
|
|
|
b38b0f |
-# Copyright (C) 2018 Red Hat, Inc.
|
|
|
b38b0f |
+# Copyright (C) 2018-2019 Red Hat, Inc.
|
|
|
b38b0f |
#
|
|
|
b38b0f |
# This program is free software; you can redistribute it and/or modify
|
|
|
b38b0f |
# it under the terms of the GNU General Public License as published by
|
|
|
b38b0f |
@@ -46,16 +46,16 @@ echo
|
|
|
b38b0f |
echo "=== Check mapping of unaligned raw image ==="
|
|
|
b38b0f |
echo
|
|
|
b38b0f |
|
|
|
b38b0f |
-_make_test_img 43009 # qemu-img create rounds size up
|
|
|
b38b0f |
+_make_test_img 65537 # qemu-img create rounds size up
|
|
|
b38b0f |
$QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map
|
|
|
b38b0f |
|
|
|
b38b0f |
-truncate --size=43009 "$TEST_IMG" # so we resize it and check again
|
|
|
b38b0f |
+truncate --size=65537 "$TEST_IMG" # so we resize it and check again
|
|
|
b38b0f |
$QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map
|
|
|
b38b0f |
|
|
|
b38b0f |
-$QEMU_IO -c 'w 43008 1' "$TEST_IMG" | _filter_qemu_io # writing also rounds up
|
|
|
b38b0f |
+$QEMU_IO -c 'w 65536 1' "$TEST_IMG" | _filter_qemu_io # writing also rounds up
|
|
|
b38b0f |
$QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map
|
|
|
b38b0f |
|
|
|
b38b0f |
-truncate --size=43009 "$TEST_IMG" # so we resize it and check again
|
|
|
b38b0f |
+truncate --size=65537 "$TEST_IMG" # so we resize it and check again
|
|
|
b38b0f |
$QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map
|
|
|
b38b0f |
|
|
|
b38b0f |
# success, all done
|
|
|
b38b0f |
diff --git a/tests/qemu-iotests/221.out b/tests/qemu-iotests/221.out
|
|
|
b38b0f |
index a9c0190..9f9dd52 100644
|
|
|
b38b0f |
--- a/tests/qemu-iotests/221.out
|
|
|
b38b0f |
+++ b/tests/qemu-iotests/221.out
|
|
|
b38b0f |
@@ -2,15 +2,15 @@ QA output created by 221
|
|
|
b38b0f |
|
|
|
b38b0f |
=== Check mapping of unaligned raw image ===
|
|
|
b38b0f |
|
|
|
b38b0f |
-Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=43009
|
|
|
b38b0f |
-[{ "start": 0, "length": 43520, "depth": 0, "zero": true, "data": false, "offset": OFFSET}]
|
|
|
b38b0f |
-[{ "start": 0, "length": 43520, "depth": 0, "zero": true, "data": false, "offset": OFFSET}]
|
|
|
b38b0f |
-wrote 1/1 bytes at offset 43008
|
|
|
b38b0f |
+Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=65537
|
|
|
b38b0f |
+[{ "start": 0, "length": 66048, "depth": 0, "zero": true, "data": false, "offset": OFFSET}]
|
|
|
b38b0f |
+[{ "start": 0, "length": 66048, "depth": 0, "zero": true, "data": false, "offset": OFFSET}]
|
|
|
b38b0f |
+wrote 1/1 bytes at offset 65536
|
|
|
b38b0f |
1 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
b38b0f |
-[{ "start": 0, "length": 40960, "depth": 0, "zero": true, "data": false, "offset": OFFSET},
|
|
|
b38b0f |
-{ "start": 40960, "length": 2049, "depth": 0, "zero": false, "data": true, "offset": OFFSET},
|
|
|
b38b0f |
-{ "start": 43009, "length": 511, "depth": 0, "zero": true, "data": false, "offset": OFFSET}]
|
|
|
b38b0f |
-[{ "start": 0, "length": 40960, "depth": 0, "zero": true, "data": false, "offset": OFFSET},
|
|
|
b38b0f |
-{ "start": 40960, "length": 2049, "depth": 0, "zero": false, "data": true, "offset": OFFSET},
|
|
|
b38b0f |
-{ "start": 43009, "length": 511, "depth": 0, "zero": true, "data": false, "offset": OFFSET}]
|
|
|
b38b0f |
+[{ "start": 0, "length": 65536, "depth": 0, "zero": true, "data": false, "offset": OFFSET},
|
|
|
b38b0f |
+{ "start": 65536, "length": 1, "depth": 0, "zero": false, "data": true, "offset": OFFSET},
|
|
|
b38b0f |
+{ "start": 65537, "length": 511, "depth": 0, "zero": true, "data": false, "offset": OFFSET}]
|
|
|
b38b0f |
+[{ "start": 0, "length": 65536, "depth": 0, "zero": true, "data": false, "offset": OFFSET},
|
|
|
b38b0f |
+{ "start": 65536, "length": 1, "depth": 0, "zero": false, "data": true, "offset": OFFSET},
|
|
|
b38b0f |
+{ "start": 65537, "length": 511, "depth": 0, "zero": true, "data": false, "offset": OFFSET}]
|
|
|
b38b0f |
*** done
|
|
|
b38b0f |
--
|
|
|
b38b0f |
1.8.3.1
|
|
|
b38b0f |
|