This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-aarch64 in repository toolchain/ci/qemu.
from 59a89510b6 Merge remote-tracking branch 'remotes/stefanberger/tags/pull [...] adds e2f948a8b5 python: qemu: add timer parameter for qmp.accept socket adds 22305c2a08 python: Reduce strictness of pylint's duplicate-code check adds 804f7695e5 python: qemu: pass the wrapper field from QEMUQtestmachine t [...] adds 0193767b25 docs/devel/testing: add debug section to the QEMU iotests chapter adds cfb9b0b731 qemu-iotests: add option to attach gdbserver adds d3ec2022cb qemu-iotests: delay QMP socket timers adds 776b9974e5 qemu_iotests: insert gdbserver command line as wrapper for q [...] adds 4d14db0468 qemu-iotests: add gdbserver option to script tests too adds e92ecc322c docs/devel/testing: add -gdb option to the debugging section [...] adds a9b4c6bb64 qemu-iotests: extend the check script to prepare supporting [...] adds d0c34326c8 qemu-iotests: extend QMP socket timeout when using valgrind adds d792c8636a qemu-iotests: allow valgrind to read/delete the generated log file adds 4032d1f69c qemu-iotests: insert valgrind command line as wrapper for qe [...] adds bd10a7397e docs/devel/testing: add -valgrind option to the debug sectio [...] adds eb7a91d07a qemu-iotests: add option to show qemu binary logs on stdout adds 8ffcda2a70 docs/devel/testing: add -p option to the debug section of QE [...] adds 8cca0bd289 block/monitor: Consolidate hmp_handle_error calls to reduce [...] adds b68ce82409 raw-format: drop WRITE and RESIZE child perms when possible adds 06aad78b82 iotests: use with-statement for open() calls adds 79da62b352 iotests: use subprocess.DEVNULL instead of open("/dev/null") adds bd8f4c42c8 block: introduce bdrv_replace_child_bs() adds ed089506ee block: introduce blk_replace_bs adds deb2bb163f qdev-properties: PropertyInfo: add realized_set_allowed field adds d1a58c176a qdev: allow setting drive property for realized device adds d003e0aece block: rename backup-top to copy-before-write adds 49577723d4 block-copy: move detecting fleecing scheme to block-copy adds f8b9504bac block/block-copy: introduce block_copy_set_copy_opts() adds 2a6511dfeb block/backup: set copy_range and compress after filter insertion adds b518e9e9ef block/backup: move cluster size calculation to block-copy adds 3860c02019 block/copy-before-write: relax permission requirements when [...] adds 451532311a block/copy-before-write: drop extra bdrv_unref on failure path adds 3c1e63277e block/copy-before-write: use file child instead of backing adds 7ddbce2dec block/copy-before-write: bdrv_cbw_append(): replace child at last adds 1f0cacb967 block/copy-before-write: introduce cbw_init() adds fe7ea40c0e block/copy-before-write: cbw_init(): rename variables adds 5a50742674 block/copy-before-write: cbw_init(): use file child after attaching adds 4c1e992bf2 block/copy-before-write: bdrv_cbw_append(): drop unused comp [...] adds f44fd7399c block/copy-before-write: cbw_init(): use options adds 06e0a9c164 block/copy-before-write: initialize block-copy bitmap adds 201b4bb6c7 block/block-copy: make setting progress optional adds 751cec7a26 block/copy-before-write: make public block driver adds 783b2825f6 qapi: publish copy-before-write filter adds c7daa57eb5 python/qemu/machine.py: refactor _qemu_args() adds 3f3c9b4c9d python/qemu/machine: QEMUMachine: improve qmp() method adds 15c3b863ee python:QEMUMachine: template typing for self returning methods adds f08ef04371 iotests/222: fix pylint and mypy complains adds bb053e4724 iotests/222: constantly use single quotes for strings adds c88f078948 iotests: move 222 to tests/image-fleecing adds e89c0c8de3 iotests.py: hmp_qemu_io: support qdev adds b23c3b1459 iotests/image-fleecing: proper source device adds 66b63809fa iotests/image-fleecing: rename tgt_node adds 32f84b40ab iotests/image-fleecing: prepare for adding new test-case adds c060598569 iotests/image-fleecing: add test-case for copy-before-write filter adds abde8ac2a5 block/block-copy: block_copy_state_new(): drop extra arguments adds 28031d5c74 block/export/fuse.c: fix fuse-lseek on uclibc or musl adds ebd979c74e block/file-win32: add reopen handlers adds 9093028dd4 Merge remote-tracking branch 'remotes/hreitz/tags/pull-block [...]
No new revisions were added by this update.
Summary of changes: .gitlab-ci.d/buildtest.yml | 6 +- MAINTAINERS | 4 +- block.c | 31 ++++ block/backup-top.c | 253 --------------------------- block/backup.c | 116 +++---------- block/block-backend.c | 8 + block/block-copy.c | 136 ++++++++++++--- block/copy-before-write.c | 256 ++++++++++++++++++++++++++++ block/{backup-top.h => copy-before-write.h} | 25 ++- block/export/fuse.c | 3 + block/file-win32.c | 101 ++++++++++- block/meson.build | 2 +- block/monitor/block-hmp-cmds.c | 12 +- block/raw-format.c | 21 ++- docs/devel/testing.rst | 29 ++++ hw/core/qdev-properties-system.c | 43 +++-- hw/core/qdev-properties.c | 6 +- include/block/block-copy.h | 6 +- include/block/block.h | 2 + include/hw/qdev-properties.h | 1 + include/sysemu/block-backend.h | 1 + python/qemu/machine/machine.py | 56 +++--- python/qemu/machine/qtest.py | 9 +- python/setup.cfg | 5 + qapi/block-core.json | 25 ++- tests/qemu-iotests/222 | 159 ----------------- tests/qemu-iotests/222.out | 67 -------- tests/qemu-iotests/283 | 35 ++-- tests/qemu-iotests/283.out | 4 +- tests/qemu-iotests/297 | 2 +- tests/qemu-iotests/check | 15 +- tests/qemu-iotests/common.qemu | 7 +- tests/qemu-iotests/common.rc | 8 +- tests/qemu-iotests/iotests.py | 75 ++++++-- tests/qemu-iotests/testenv.py | 23 ++- tests/qemu-iotests/tests/image-fleecing | 192 +++++++++++++++++++++ tests/qemu-iotests/tests/image-fleecing.out | 139 +++++++++++++++ 37 files changed, 1172 insertions(+), 711 deletions(-) delete mode 100644 block/backup-top.c create mode 100644 block/copy-before-write.c rename block/{backup-top.h => copy-before-write.h} (56%) delete mode 100755 tests/qemu-iotests/222 delete mode 100644 tests/qemu-iotests/222.out create mode 100755 tests/qemu-iotests/tests/image-fleecing create mode 100644 tests/qemu-iotests/tests/image-fleecing.out