This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-release-arm-lts-allnoconfig in repository toolchain/ci/qemu.
from a3607def89 Update version for v6.2.0-rc4 release adds 44f28df247 Update version for v6.2.0 release adds af1719795c Open 6.3 development tree adds cf4fbc3030 block/nvme: fix infinite loop in nvme_free_req_queue_cb() adds 76b56fdfc9 Merge tag 'block-pull-request' of https://gitlab.com/stefanh [...] adds efe84f03ea qtest/libqos: add a function to initialize secondary PCI buses adds e32b96b559 tests/qtest: add some tests for virtio-net failover adds 1e2077e223 tests/libqtest: add some virtio-net failover migration cance [...] adds e1e3d32118 tests/libqtest: add a migration test with two couples of fai [...] adds a9697d0947 tests/qtest: Run the PPC 32-bit tests with the 64-bit target [...] adds bf22f15114 tests/qtest: Fence the tests that need xlnx-zcu102 with CONF [...] adds 5516a3b592 tests/qtest: Add a function that gets a list with available [...] adds 719051ca3f tests/qtest: Add a function to check whether a machine is available adds e6a52b3651 Move the libssh setup from configure to meson.build adds f462be4c06 gitlab-ci.d/buildtest: Add jobs that run the device-crash-test adds f11b0a4892 gitlab-ci: Add cirrus-ci based tests for NetBSD and OpenBSD adds 7b140d2359 virtio-iommu: Remove set_config callback adds 3a411b2d96 virtio-iommu: Fix endianness in get_config adds 6b77ae0531 virtio-iommu: Fix the domain_range end adds becf88730b tests: qtest: Add virtio-iommu test adds 7876cba8fc gitlab-ci: Test compilation on Windows with MSYS2 adds 5d3da09e44 Merge tag 'pull-request-2021-12-15' of https://gitlab.com/th [...] new 672159a97c migration/ram.c: Remove the qemu_mutex_lock in colo_flush_ra [...] new 0e0f0479e2 migration/colo: More accurate update checkpoint time new 795969ab1f Fixed a QEMU hang when guest poweroff in COLO mode new 751fe4c608 migration/colo: Optimize COLO primary node start code path new bad452a77e migration: Remove is_zero_range() new f13f22badc dump: Remove is_zero_page() new 47a1782461 multifd: Delete useless operation new 144fa06b34 migration: Never call twice qemu_target_page_size() new 90a3d2f9d5 multifd: Rename used field to num new 18ede636bc multifd: Add missing documention new 1943c11a62 multifd: The variable is only used inside the loop new 02fb81043e multifd: remove used parameter from send_prepare() method new 40a4bfe9d3 multifd: remove used parameter from send_recv_pages() method new 01102a2ef6 multifd: Fill offset and block for reception new 077fbb5942 multifd: Shut down the QIO channels to avoid blocking the se [...] new 9c5c8ff24e COLO: Move some trace code behind qemu_mutex_unlock_iothread() new f5ff548774 multifd: Make zstd compression method not use iovs new a5ed229488 multifd: Make zlib compression method not use iovs new 0da6106883 Merge tag 'migration-20211214-pull-request' of https://gitla [...]
The 19 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: .gitlab-ci.d/buildtest.yml | 23 + .gitlab-ci.d/cirrus.yml | 35 + .gitlab-ci.d/cirrus/kvm-build.yml | 31 + .gitlab-ci.d/qemu-project.yml | 1 + .gitlab-ci.d/windows.yml | 98 +++ VERSION | 2 +- block/nvme.c | 5 +- configure | 27 - dump/dump.c | 10 +- hw/virtio/trace-events | 3 +- hw/virtio/virtio-iommu.c | 42 +- include/hw/pci/pci_bridge.h | 8 + include/migration/colo.h | 1 + meson.build | 13 +- meson_options.txt | 2 + migration/colo.c | 33 +- migration/migration.c | 26 +- migration/multifd-zlib.c | 48 +- migration/multifd-zstd.c | 47 +- migration/multifd.c | 70 +- migration/multifd.h | 6 +- migration/ram.c | 11 +- migration/savevm.c | 5 +- scripts/meson-buildoptions.sh | 3 + tests/qtest/boot-serial-test.c | 3 +- tests/qtest/cdrom-test.c | 8 +- tests/qtest/libqos/libqtest.h | 8 + tests/qtest/libqos/meson.build | 1 + tests/qtest/libqos/pci.c | 119 ++++ tests/qtest/libqos/pci.h | 1 + tests/qtest/libqos/virtio-iommu.c | 126 ++++ tests/qtest/libqos/virtio-iommu.h | 40 ++ tests/qtest/libqtest.c | 79 ++- tests/qtest/meson.build | 9 +- tests/qtest/prom-env-test.c | 8 +- tests/qtest/virtio-iommu-test.c | 326 +++++++++ tests/qtest/virtio-net-failover.c | 1352 +++++++++++++++++++++++++++++++++++++ 37 files changed, 2425 insertions(+), 205 deletions(-) create mode 100644 .gitlab-ci.d/cirrus/kvm-build.yml create mode 100644 .gitlab-ci.d/windows.yml create mode 100644 tests/qtest/libqos/virtio-iommu.c create mode 100644 tests/qtest/libqos/virtio-iommu.h create mode 100644 tests/qtest/virtio-iommu-test.c create mode 100644 tests/qtest/virtio-net-failover.c