3 # Test simple read/write using plain bdrv_read/bdrv_write
5 # Copyright (C) 2014 Red Hat, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 owner
=stefanha@redhat.com
25 echo "QA output created by $seq"
29 status
=1 # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
37 # get standard environment, filters and checks
41 _supported_fmt generic
42 _supported_proto generic
49 echo "== Single request =="
51 $QEMU_IO -c "multiwrite 0 4k" "$TEST_IMG" | _filter_qemu_io
54 echo "== verify pattern =="
55 $QEMU_IO -c "read -P 0xcd 0 4k" "$TEST_IMG" | _filter_qemu_io
56 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
61 echo "== Sequential requests =="
63 $QEMU_IO -c "multiwrite 0 4k ; 4k 4k" "$TEST_IMG" | _filter_qemu_io
66 echo "== verify pattern =="
67 $QEMU_IO -c "read -P 0xcd 0 4k" "$TEST_IMG" | _filter_qemu_io
68 $QEMU_IO -c "read -P 0xce 4k 4k" "$TEST_IMG" | _filter_qemu_io
69 $QEMU_IO -c "read -P 0 8k 4k" "$TEST_IMG" | _filter_qemu_io
74 echo "== Superset overlapping requests =="
76 $QEMU_IO -c "multiwrite 0 4k ; 1k 2k" "$TEST_IMG" | _filter_qemu_io
79 echo "== verify pattern =="
80 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
81 # [1k, 3k) since it could have either pattern 0xcd or 0xce.
82 $QEMU_IO -c "read -P 0xcd 0 1k" "$TEST_IMG" | _filter_qemu_io
83 $QEMU_IO -c "read -P 0xcd 3k 1k" "$TEST_IMG" | _filter_qemu_io
84 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
89 echo "== Subset overlapping requests =="
91 $QEMU_IO -c "multiwrite 1k 2k ; 0k 4k" "$TEST_IMG" | _filter_qemu_io
94 echo "== verify pattern =="
95 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
96 # [1k, 3k) since it could have either pattern 0xcd or 0xce.
97 $QEMU_IO -c "read -P 0xce 0 1k" "$TEST_IMG" | _filter_qemu_io
98 $QEMU_IO -c "read -P 0xce 3k 1k" "$TEST_IMG" | _filter_qemu_io
99 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
104 echo "== Head overlapping requests =="
106 $QEMU_IO -c "multiwrite 0k 2k ; 0k 4k" "$TEST_IMG" | _filter_qemu_io
109 echo "== verify pattern =="
110 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
111 # [0k, 2k) since it could have either pattern 0xcd or 0xce.
112 $QEMU_IO -c "read -P 0xce 2k 2k" "$TEST_IMG" | _filter_qemu_io
113 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
118 echo "== Tail overlapping requests =="
120 $QEMU_IO -c "multiwrite 2k 2k ; 0k 4k" "$TEST_IMG" | _filter_qemu_io
123 echo "== verify pattern =="
124 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
125 # [2k, 4k) since it could have either pattern 0xcd or 0xce.
126 $QEMU_IO -c "read -P 0xce 0k 2k" "$TEST_IMG" | _filter_qemu_io
127 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
132 echo "== Disjoint requests =="
134 $QEMU_IO -c "multiwrite 0 4k ; 64k 4k" "$TEST_IMG" | _filter_qemu_io
137 echo "== verify pattern =="
138 $QEMU_IO -c "read -P 0xcd 0 4k" "$TEST_IMG" | _filter_qemu_io
139 $QEMU_IO -c "read -P 0 4k 60k" "$TEST_IMG" | _filter_qemu_io
140 $QEMU_IO -c "read -P 0xce 64k 4k" "$TEST_IMG" | _filter_qemu_io
141 $QEMU_IO -c "read -P 0 68k 4k" "$TEST_IMG" | _filter_qemu_io