Lines Matching +full:c +full:- +full:22

6 # Copyright (C) 2016-2018 Red Hat, Inc.
55 $QEMU_IO -c "write -P 11 0 $size" "$TEST_IMG.base" | _filter_qemu_io
56 _make_test_img -b "$TEST_IMG.base" -F $IMGFMT
57 $QEMU_IO -c "write -P 22 0 110M" "$TEST_IMG" | _filter_qemu_io
59 # Limited to 64k max-transfer
61 echo "== constrained alignment and max-transfer =="
62 limits=align=4k,max-transfer=64k
63 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
64 -c "write -P 33 1000 128k" -c "read -P 33 1000 128k" | _filter_qemu_io
67 echo "== write zero with constrained max-transfer =="
68 limits=align=512,max-transfer=64k,opt-write-zero=$CLUSTER_SIZE
69 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
70 -c "write -z 8003584 2093056" | _filter_qemu_io
72 # non-power-of-2 write-zero/discard alignments
74 echo "== non-power-of-2 write zeroes limits =="
76 limits=align=512,opt-write-zero=15M,max-write-zero=15M,opt-discard=15M,max-discard=15M
77 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
78 -c "write -z 32M 32M" | _filter_qemu_io
81 echo "== non-power-of-2 discard limits =="
83 limits=align=512,opt-write-zero=15M,max-write-zero=15M,opt-discard=15M,max-discard=15M
84 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
85 -c "discard 80000001 30M" | _filter_qemu_io
90 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
91 -c "alloc 1 1" -c "alloc 0x6dffff0 1000" -c "alloc 127m 5P" \
92 -c map | _filter_qemu_io
99 echo read -P 22 0 1000
100 echo read -P 33 1000 128k
101 echo read -P 22 132072 7871512
102 echo read -P 0 8003584 2093056
103 echo read -P 22 10096640 23457792
104 echo read -P 0 32M 32M
105 echo read -P 22 64M 13M
106 echo read -P 0 77M 29M
107 echo read -P 22 106M 4M
108 echo read -P 11 110M 18M
111 verify_io | $QEMU_IO -r "$TEST_IMG" | _filter_qemu_io
112 $QEMU_IMG map --image-opts "$options,$nested_opts,align=4k" \