2009-07-16 19:11:09 +02:00
|
|
|
QA output created by 019
|
2012-04-11 11:21:25 +02:00
|
|
|
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=6442450944
|
2009-07-16 19:11:09 +02:00
|
|
|
Filling base image
|
|
|
|
|
2010-10-31 21:05:21 +01:00
|
|
|
=== IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 0
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 1024
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 2048
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 3072
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4096
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 5120
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 6144
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 7168
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 8192
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 9216
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 10240
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 11264
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 12288
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 13312
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 14336
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 15360
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 16384
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 17408
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 18432
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 19456
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 20480
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 21504
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 22528
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 23552
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 24576
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 25600
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 26624
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 27648
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 28672
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 29696
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 30720
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 31744
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 32768
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 33792
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 34816
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 35840
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 36864
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 37888
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 38912
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 39936
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 40960
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 41984
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 43008
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 44032
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 45056
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 46080
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 47104
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 48128
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 49152
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 50176
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 51200
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 52224
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 53248
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 54272
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 55296
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 56320
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 57344
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 58368
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 59392
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 60416
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 61440
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 62464
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 63488
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 64512
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> wrote 65536/65536 bytes at offset 1048576
|
2009-07-16 19:11:09 +02:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294967296
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294968320
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294969344
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294970368
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294971392
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294972416
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294973440
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294974464
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294975488
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294976512
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294977536
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294978560
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294979584
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294980608
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294981632
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294982656
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294983680
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294984704
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294985728
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294986752
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294987776
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294988800
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294989824
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294990848
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294991872
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294992896
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294993920
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294994944
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294995968
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294996992
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294998016
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294999040
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295000064
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295001088
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295002112
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295003136
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295004160
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295005184
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295006208
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295007232
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295008256
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295009280
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295010304
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295011328
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295012352
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295013376
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295014400
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295015424
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295016448
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295017472
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295018496
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295019520
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295020544
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295021568
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295022592
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295023616
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295024640
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295025664
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295026688
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295027712
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295028736
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295029760
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295030784
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295031808
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> wrote 65536/65536 bytes at offset 4296015872
|
2009-07-16 19:11:09 +02:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
|
qemu-io> No errors were found on the image.
|
|
|
|
Creating test image with backing file
|
|
|
|
|
2012-04-11 11:21:25 +02:00
|
|
|
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=6442450944 backing_file='TEST_DIR/t.IMGFMT.base'
|
2009-07-16 19:11:09 +02:00
|
|
|
Filling test image
|
|
|
|
|
2010-10-31 21:05:21 +01:00
|
|
|
=== IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 512
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 1536
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 2560
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 3584
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4608
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 5632
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 6656
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 7680
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 8704
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 9728
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 10752
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 11776
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 12800
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 13824
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 14848
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 15872
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 16896
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 17920
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 18944
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 19968
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 20992
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 22016
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 23040
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 24064
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 25088
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 26112
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 27136
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 28160
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 29184
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 30208
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 31232
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 32256
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 33280
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 34304
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 35328
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 36352
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 37376
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 38400
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 39424
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 40448
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 41472
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 42496
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 43520
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 44544
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 45568
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 46592
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 47616
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 48640
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 49664
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 50688
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 51712
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 52736
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 53760
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 54784
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 55808
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 56832
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 57856
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 58880
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 59904
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 60928
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 61952
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 62976
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 64000
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 65024
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> wrote 65536/65536 bytes at offset 1114112
|
2009-07-16 19:11:09 +02:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294967808
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294968832
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294969856
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294970880
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294971904
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294972928
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294973952
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294974976
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294976000
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294977024
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294978048
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294979072
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294980096
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294981120
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294982144
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294983168
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294984192
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294985216
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294986240
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294987264
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294988288
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294989312
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294990336
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294991360
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294992384
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294993408
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294994432
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294995456
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294996480
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294997504
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294998528
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4294999552
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295000576
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295001600
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295002624
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295003648
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295004672
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295005696
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295006720
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295007744
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295008768
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295009792
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295010816
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295011840
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295012864
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295013888
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295014912
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295015936
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295016960
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295017984
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295019008
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295020032
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295021056
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295022080
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295023104
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295024128
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295025152
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295026176
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295027200
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295028224
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295029248
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295030272
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295031296
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> wrote 512/512 bytes at offset 4295032320
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> wrote 65536/65536 bytes at offset 4296081408
|
2009-07-16 19:11:09 +02:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
|
qemu-io> No errors were found on the image.
|
2010-10-31 21:05:21 +01:00
|
|
|
|
2010-11-24 17:12:21 +01:00
|
|
|
Testing conversion with -B TEST_DIR/t.IMGFMT.base
|
2010-10-31 21:05:21 +01:00
|
|
|
|
2009-07-16 19:11:09 +02:00
|
|
|
Checking if backing clusters are allocated when they shouldn't
|
|
|
|
|
2009-07-27 13:12:40 +02:00
|
|
|
qemu-io> 0/128 sectors allocated at offset 1 MiB
|
|
|
|
qemu-io> qemu-io> 0/128 sectors allocated at offset 4.001 GiB
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> Reading
|
|
|
|
|
2010-10-31 21:05:21 +01:00
|
|
|
=== IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 0
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 1024
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 2048
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 3072
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4096
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 5120
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 6144
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 7168
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 8192
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 9216
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 10240
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 11264
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 12288
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 13312
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 14336
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 15360
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 16384
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 17408
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 18432
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 19456
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 20480
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 21504
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 22528
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 23552
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 24576
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 25600
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 26624
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 27648
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 28672
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 29696
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 30720
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 31744
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 32768
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 33792
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 34816
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 35840
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 36864
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 37888
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 38912
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 39936
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 40960
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 41984
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 43008
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 44032
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 45056
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 46080
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 47104
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 48128
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 49152
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 50176
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 51200
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 52224
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 53248
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 54272
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 55296
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 56320
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 57344
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 58368
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 59392
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 60416
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 61440
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 62464
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 63488
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 64512
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 512
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 1536
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 2560
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 3584
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4608
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 5632
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 6656
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 7680
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 8704
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 9728
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 10752
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 11776
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 12800
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 13824
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 14848
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 15872
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 16896
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 17920
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 18944
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 19968
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 20992
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 22016
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 23040
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 24064
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 25088
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 26112
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 27136
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 28160
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 29184
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 30208
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 31232
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 32256
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 33280
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 34304
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 35328
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 36352
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 37376
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 38400
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 39424
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 40448
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 41472
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 42496
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 43520
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 44544
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 45568
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 46592
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 47616
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 48640
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 49664
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 50688
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 51712
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 52736
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 53760
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 54784
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 55808
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 56832
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 57856
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 58880
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 59904
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 60928
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 61952
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 62976
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 64000
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 65024
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 1048576
|
2009-07-16 19:11:09 +02:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 1114112
|
2009-07-16 19:11:09 +02:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
|
qemu-io> === IO: pattern 0
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 1310720
|
2009-07-16 19:11:09 +02:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294967296
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294968320
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294969344
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294970368
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294971392
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294972416
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294973440
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294974464
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294975488
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294976512
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294977536
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294978560
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294979584
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294980608
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294981632
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294982656
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294983680
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294984704
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294985728
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294986752
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294987776
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294988800
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294989824
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294990848
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294991872
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294992896
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294993920
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294994944
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294995968
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294996992
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294998016
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294999040
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295000064
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295001088
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295002112
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295003136
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295004160
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295005184
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295006208
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295007232
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295008256
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295009280
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295010304
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295011328
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295012352
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295013376
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295014400
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295015424
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295016448
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295017472
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295018496
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295019520
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295020544
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295021568
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295022592
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295023616
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295024640
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295025664
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295026688
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295027712
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295028736
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295029760
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295030784
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295031808
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294967808
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294968832
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294969856
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294970880
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294971904
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294972928
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294973952
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294974976
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294976000
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294977024
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294978048
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294979072
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294980096
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294981120
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294982144
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294983168
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294984192
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294985216
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294986240
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294987264
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294988288
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294989312
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294990336
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294991360
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294992384
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294993408
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294994432
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294995456
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294996480
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294997504
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294998528
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294999552
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295000576
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295001600
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295002624
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295003648
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295004672
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295005696
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295006720
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295007744
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295008768
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295009792
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295010816
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295011840
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295012864
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295013888
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295014912
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295015936
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295016960
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295017984
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295019008
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295020032
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295021056
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295022080
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295023104
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295024128
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295025152
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295026176
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295027200
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295028224
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295029248
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295030272
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295031296
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295032320
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 4296015872
|
2010-10-31 21:05:21 +01:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 4296081408
|
2010-10-31 21:05:21 +01:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2009-07-16 19:11:09 +02:00
|
|
|
qemu-io> === IO: pattern 0
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 4296278016
|
2010-10-31 21:05:21 +01:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
|
qemu-io> No errors were found on the image.
|
|
|
|
|
2010-11-24 17:12:21 +01:00
|
|
|
Testing conversion with -o backing_file=TEST_DIR/t.IMGFMT.base
|
2010-10-31 21:05:21 +01:00
|
|
|
|
|
|
|
Checking if backing clusters are allocated when they shouldn't
|
|
|
|
|
|
|
|
qemu-io> 0/128 sectors allocated at offset 1 MiB
|
|
|
|
qemu-io> qemu-io> 0/128 sectors allocated at offset 4.001 GiB
|
|
|
|
qemu-io> Reading
|
|
|
|
|
|
|
|
=== IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 0
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 1024
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 2048
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 3072
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4096
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 5120
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 6144
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 7168
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 8192
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 9216
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 10240
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 11264
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 12288
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 13312
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 14336
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 15360
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 16384
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 17408
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 18432
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 19456
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 20480
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 21504
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 22528
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 23552
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 24576
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 25600
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 26624
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 27648
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 28672
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 29696
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 30720
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 31744
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 32768
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 33792
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 34816
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 35840
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 36864
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 37888
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 38912
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 39936
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 40960
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 41984
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 43008
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 44032
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 45056
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 46080
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 47104
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 48128
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 49152
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 50176
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 51200
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 52224
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 53248
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 54272
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 55296
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 56320
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 57344
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 58368
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 59392
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 60416
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 61440
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 62464
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 63488
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 64512
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 512
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 1536
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 2560
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 3584
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4608
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 5632
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 6656
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 7680
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 8704
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 9728
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 10752
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 11776
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 12800
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 13824
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 14848
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 15872
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 16896
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 17920
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 18944
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 19968
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 20992
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 22016
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 23040
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 24064
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 25088
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 26112
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 27136
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 28160
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 29184
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 30208
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 31232
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 32256
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 33280
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 34304
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 35328
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 36352
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 37376
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 38400
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 39424
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 40448
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 41472
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 42496
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 43520
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 44544
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 45568
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 46592
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 47616
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 48640
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 49664
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 50688
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 51712
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 52736
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 53760
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 54784
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 55808
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 56832
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 57856
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 58880
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 59904
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 60928
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 61952
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 62976
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 64000
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 65024
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 1048576
|
2010-10-31 21:05:21 +01:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 1114112
|
2010-10-31 21:05:21 +01:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
|
qemu-io> === IO: pattern 0
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 1310720
|
2010-10-31 21:05:21 +01:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
|
qemu-io> === IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294967296
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294968320
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294969344
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294970368
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294971392
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294972416
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294973440
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294974464
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294975488
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294976512
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294977536
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294978560
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294979584
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294980608
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294981632
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294982656
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294983680
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294984704
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294985728
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294986752
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294987776
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294988800
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294989824
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294990848
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294991872
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294992896
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294993920
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294994944
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294995968
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294996992
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294998016
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294999040
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295000064
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295001088
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295002112
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295003136
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295004160
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295005184
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295006208
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295007232
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295008256
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295009280
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295010304
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295011328
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295012352
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295013376
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295014400
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295015424
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295016448
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295017472
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295018496
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295019520
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295020544
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295021568
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295022592
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295023616
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295024640
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295025664
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295026688
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295027712
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295028736
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295029760
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295030784
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295031808
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294967808
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294968832
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294969856
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294970880
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294971904
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294972928
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294973952
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294974976
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294976000
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294977024
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294978048
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294979072
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294980096
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294981120
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294982144
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294983168
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294984192
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294985216
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294986240
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294987264
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294988288
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294989312
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294990336
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294991360
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294992384
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294993408
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294994432
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294995456
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294996480
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294997504
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294998528
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4294999552
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295000576
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295001600
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295002624
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295003648
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295004672
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295005696
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295006720
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295007744
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295008768
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295009792
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295010816
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295011840
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295012864
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295013888
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295014912
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295015936
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295016960
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295017984
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295019008
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295020032
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295021056
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295022080
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295023104
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295024128
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295025152
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295026176
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295027200
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295028224
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295029248
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295030272
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295031296
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> read 512/512 bytes at offset 4295032320
|
2012-05-08 16:51:51 +02:00
|
|
|
512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 42
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 4296015872
|
2009-07-16 19:11:09 +02:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
2010-10-31 21:05:21 +01:00
|
|
|
qemu-io> === IO: pattern 43
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 4296081408
|
2009-07-16 19:11:09 +02:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
|
qemu-io> === IO: pattern 0
|
qemu-iotests: Use zero-based offsets for IO patterns
The io_pattern style functions have the following loop:
for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done
Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072
Normally we expect:
1024, 1536, 2048, 2560
Most tests ignore this detail, which means that they perform I/O to a
slightly different range than expected by the test author.
Later on things got less innocent and tests started trying to compensate
for the 1-based indexing. This included negative start values in test
024 and my own attempt with count-1 in test 028!
The end result is that tests that use io_pattern are hard to reason
about and don't work the way you'd expect. It's time to clean this mess
up.
This patch switches io_pattern to 0-based offsets. This requires
adjusting the golden outputs since I/O ranges are now shifted and output
differs.
Verifying these output diffs is easy, however. Each diff hunk moves one
I/O from beyond the end of the pattern range to the beginning.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-02-04 13:55:02 +01:00
|
|
|
qemu-io> read 65536/65536 bytes at offset 4296278016
|
2009-07-16 19:11:09 +02:00
|
|
|
64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
|
|
|
qemu-io> No errors were found on the image.
|
|
|
|
*** done
|