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-arm in repository toolchain/ci/qemu.
from 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 [...] adds 672159a97c migration/ram.c: Remove the qemu_mutex_lock in colo_flush_ra [...] adds 0e0f0479e2 migration/colo: More accurate update checkpoint time adds 795969ab1f Fixed a QEMU hang when guest poweroff in COLO mode adds 751fe4c608 migration/colo: Optimize COLO primary node start code path adds bad452a77e migration: Remove is_zero_range() adds f13f22badc dump: Remove is_zero_page() adds 47a1782461 multifd: Delete useless operation adds 144fa06b34 migration: Never call twice qemu_target_page_size() adds 90a3d2f9d5 multifd: Rename used field to num adds 18ede636bc multifd: Add missing documention adds 1943c11a62 multifd: The variable is only used inside the loop adds 02fb81043e multifd: remove used parameter from send_prepare() method adds 40a4bfe9d3 multifd: remove used parameter from send_recv_pages() method adds 01102a2ef6 multifd: Fill offset and block for reception adds 077fbb5942 multifd: Shut down the QIO channels to avoid blocking the se [...] adds 9c5c8ff24e COLO: Move some trace code behind qemu_mutex_unlock_iothread() adds f5ff548774 multifd: Make zstd compression method not use iovs adds a5ed229488 multifd: Make zlib compression method not use iovs adds 0da6106883 Merge tag 'migration-20211214-pull-request' of https://gitla [...]
No new revisions were added by this update.
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 +++ 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 +++++++++++++++++++++++++++++++++++++ 35 files changed, 2421 insertions(+), 202 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