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
59 echo "== Sequential requests =="
61 $QEMU_IO -c "multiwrite 0 4k ; 4k 4k" "$TEST_IMG" | _filter_qemu_io
64 echo "== verify pattern =="
65 $QEMU_IO -c "read -P 0xcd 0 4k" "$TEST_IMG" | _filter_qemu_io
66 $QEMU_IO -c "read -P 0xce 4k 4k" "$TEST_IMG" | _filter_qemu_io
67 $QEMU_IO -c "read -P 0 8k 4k" "$TEST_IMG" | _filter_qemu_io
70 echo "== Superset overlapping requests =="
72 $QEMU_IO -c "multiwrite 0 4k ; 1k 2k" "$TEST_IMG" | _filter_qemu_io
75 echo "== verify pattern =="
76 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
77 # [1k, 3k) since it could have either pattern 0xcd or 0xce.
78 $QEMU_IO -c "read -P 0xcd 0 1k" "$TEST_IMG" | _filter_qemu_io
79 $QEMU_IO -c "read -P 0xcd 3k 1k" "$TEST_IMG" | _filter_qemu_io
80 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
83 echo "== Subset overlapping requests =="
85 $QEMU_IO -c "multiwrite 1k 2k ; 0k 4k" "$TEST_IMG" | _filter_qemu_io
88 echo "== verify pattern =="
89 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
90 # [1k, 3k) since it could have either pattern 0xcd or 0xce.
91 $QEMU_IO -c "read -P 0xce 0 1k" "$TEST_IMG" | _filter_qemu_io
92 $QEMU_IO -c "read -P 0xce 3k 1k" "$TEST_IMG" | _filter_qemu_io
93 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
96 echo "== Head overlapping requests =="
98 $QEMU_IO -c "multiwrite 0k 2k ; 0k 4k" "$TEST_IMG" | _filter_qemu_io
101 echo "== verify pattern =="
102 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
103 # [0k, 2k) since it could have either pattern 0xcd or 0xce.
104 $QEMU_IO -c "read -P 0xce 2k 2k" "$TEST_IMG" | _filter_qemu_io
105 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
108 echo "== Tail overlapping requests =="
110 $QEMU_IO -c "multiwrite 2k 2k ; 0k 4k" "$TEST_IMG" | _filter_qemu_io
113 echo "== verify pattern =="
114 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
115 # [2k, 4k) since it could have either pattern 0xcd or 0xce.
116 $QEMU_IO -c "read -P 0xce 0k 2k" "$TEST_IMG" | _filter_qemu_io
117 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
120 echo "== Disjoint requests =="
122 $QEMU_IO -c "multiwrite 0 4k ; 64k 4k" "$TEST_IMG" | _filter_qemu_io
125 echo "== verify pattern =="
126 $QEMU_IO -c "read -P 0xcd 0 4k" "$TEST_IMG" | _filter_qemu_io
127 $QEMU_IO -c "read -P 0 4k 60k" "$TEST_IMG" | _filter_qemu_io
128 $QEMU_IO -c "read -P 0xce 64k 4k" "$TEST_IMG" | _filter_qemu_io
129 $QEMU_IO -c "read -P 0 68k 4k" "$TEST_IMG" | _filter_qemu_io