3 # Block job co-routine race condition test.
5 # See: https://bugzilla.redhat.com/show_bug.cgi?id=1508708
7 # Copyright (C) 2017 Red Hat, Inc.
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
24 owner
=jcody@redhat.com
27 echo "QA output created by $seq"
29 status
=1 # failure is the default!
34 _rm_test_img
"${TEST_IMG}"
35 _rm_test_img
"${BACKING_IMG}"
37 trap "_cleanup; exit \$status" 0 1 2 3 15
39 # get standard environment, filters and checks
44 _supported_fmt qcow2 qed
47 BACKING_IMG
="$TEST_IMG.base"
49 TEST_IMG
="$BACKING_IMG" _make_test_img
512M
50 _make_test_img
-F $IMGFMT -b "$BACKING_IMG" 512M
52 ${QEMU_IO} -c "write -P 0xa5 512 300M" "${BACKING_IMG}" | _filter_qemu_io
54 case "$QEMU_DEFAULT_MACHINE" in
56 virtio_scsi
="-device virtio-scsi-ccw,id=scsi0,iothread=iothread0"
59 virtio_scsi
="-device pci-bridge,id=bridge1,chassis_nr=1,bus=pci.0
60 -device virtio-scsi-pci,bus=bridge1,addr=0x1f,id=scsi0,iothread=iothread0"
65 echo === Starting QEMU VM
===
67 qemu_comm_method
="qmp"
68 _launch_qemu
-object iothread
,id
=iothread0
$virtio_scsi \
69 -drive file="${TEST_IMG}",media
=disk
,if=none
,cache
=$CACHEMODE,aio
=$AIOMODE,id
=drive_sysdisk
,format
=$IMGFMT \
70 -device scsi-hd
,drive
=drive_sysdisk
,bus
=scsi0.0
,id
=sysdisk
,bootindex
=0
73 _send_qemu_cmd
$h1 "{ 'execute': 'qmp_capabilities' }" 'return'
76 echo === Sending stream
/cancel
, checking
for SIGSEGV only
===
78 for (( i
=1;i
<500;i
++ ))
80 mismatch_only
='y' qemu_error_no_exit
='n' _send_qemu_cmd
$h1 \
82 'execute': 'block-stream',
84 'device': 'drive_sysdisk',
91 'execute': 'block-job-cancel',
96 "{.*{.*}.*}" # should match all well-formed QMP responses
99 silent
='y' _send_qemu_cmd
$h1 "{ 'execute': 'quit' }" 'return'
101 echo "$i iterations performed"