4 # Test commit job graph modifications while requests are active
6 # Copyright (C) 2019 Red Hat, Inc.
8 # Creator/Owner: Kevin Wolf <kwolf@redhat.com>
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or
13 # (at your option) any later version.
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program. If not, see <http://www.gnu.org/licenses/>.
25 from iotests import imgfmt
27 iotests.script_initialize(supported_fmts=['qcow2'])
29 iotests.log('Finishing a commit job with background reads')
30 iotests.log('============================================')
33 with iotests.FilePath('t.qcow2') as disk_path, \
34 iotests.FilePath('t.qcow2.mid') as mid_path, \
35 iotests.FilePath('t.qcow2.base') as base_path, \
38 iotests.log("=== Create backing chain and start VM ===")
41 size = 128 * 1024 * 1024
44 iotests.create_image(base_path, size)
45 iotests.qemu_img_create('-f', iotests.imgfmt, mid_path, size_str)
46 iotests.qemu_img_create('-f', iotests.imgfmt, disk_path, size_str)
48 # Create a backing chain like this:
49 # base <- [throttled: bps-read=4096] <- mid <- overlay
51 vm.add_object('throttle-group,x-bps-read=4096,id=throttle0')
52 vm.add_blockdev('file,filename=%s,node-name=base' % (base_path))
53 vm.add_blockdev('throttle,throttle-group=throttle0,file=base,node-name=throttled')
54 vm.add_blockdev('file,filename=%s,node-name=mid-file' % (mid_path))
55 vm.add_blockdev('qcow2,file=mid-file,node-name=mid,backing=throttled')
56 vm.add_drive_raw('if=none,id=overlay,driver=qcow2,file=%s,backing=mid' % (disk_path))
60 iotests.log("=== Start background read requests ===")
64 vm.hmp_qemu_io('overlay', 'aio_read 0 4k')
65 vm.hmp_qemu_io('overlay', 'aio_read 0 4k')
69 iotests.log("=== Run a commit job ===")
72 result = vm.qmp_log('block-commit', job_id='job0', auto_finalize=False,
73 device='overlay', top_node='mid')
75 vm.run_job('job0', auto_finalize=False, pre_finalize=start_requests,
81 iotests.log('Closing the VM while a job is being cancelled')
82 iotests.log('=============================================')
85 with iotests.FilePath('src.qcow2') as src_path, \
86 iotests.FilePath('dst.qcow2') as dst_path, \
89 iotests.log('=== Create images and start VM ===')
92 size = 128 * 1024 * 1024
95 iotests.qemu_img_create('-f', iotests.imgfmt, src_path, size_str)
96 iotests.qemu_img_create('-f', iotests.imgfmt, dst_path, size_str)
98 iotests.log(iotests.qemu_io('-f', iotests.imgfmt, '-c', 'write 0 1M',
100 filters=[iotests.filter_test_dir, iotests.filter_qemu_io])
102 vm.add_object('throttle-group,x-bps-read=4096,id=throttle0')
104 vm.add_blockdev('file,node-name=src-file,filename=%s' % (src_path))
105 vm.add_blockdev('%s,node-name=src,file=src-file' % (iotests.imgfmt))
107 vm.add_blockdev('file,node-name=dst-file,filename=%s' % (dst_path))
108 vm.add_blockdev('%s,node-name=dst,file=dst-file' % (iotests.imgfmt))
110 vm.add_blockdev('throttle,node-name=src-throttled,' +
111 'throttle-group=throttle0,file=src')
113 vm.add_device('virtio-blk,drive=src-throttled')
117 iotests.log('=== Start a mirror job ===')
120 vm.qmp_log('blockdev-mirror', job_id='job0', device='src-throttled',
121 target='dst', sync='full')
123 vm.qmp_log('block-job-cancel', device='job0')