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_check_gcc/master-aarch64 in repository toolchain/ci/qemu.
from 9ac873a469 Merge tag 'block-pull-request' of https://gitlab.com/stefanh [...] adds b9f88dc071 qmp: Support for querying stats adds cc01a3f4ca kvm: Support for querying fd-based stats adds 467ef823d8 qmp: add filtering of statistics by target vCPU adds cfb3448922 cutils: add functions for IEC and SI prefixes adds 433815f5bd hmp: add basic "info stats" implementation adds 068cc51d42 qmp: add filtering of statistics by provider adds 7716417eac hmp: add filtering of statistics by provider adds cf7405bc02 qmp: add filtering of statistics by name adds 39cd0c7f12 hmp: add filtering of statistics by name adds f55ba8018c block: add more commands to preconfig mode adds 997340f3c5 s390x: simplify virtio_ccw_reset_virtio adds a44bed2f54 virtio-mmio: stop ioeventfd on legacy reset adds 9e43a83041 virtio: stop ioeventfd on reset adds 26cfd67981 virtio-mmio: cleanup reset adds b5569e5b56 configure: update list of preserved environment variables adds b9eae9efae configure: cleanup -fno-pie detection adds 39735a914d tests/vm: allow running tests in an unconfigured source tree adds aa4f3a3b88 build: fix check for -fsanitize-coverage-allowlist adds 766a981474 q35:Enable TSEG only when G_SMRAME and TSEG_EN both enabled adds 12640f05eb meson: put cross compiler info in a separate section adds 76ca98b0f8 build: include pc-bios/ part in the ROMS variable adds def6fd6c9c Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu [...] adds 9472a68965 tests/9pfs: walk to non-existent dir adds c1668948e8 tests/9pfs: Twalk with nwname=0 adds a6821b8284 tests/9pfs: compare QIDs in fs_walk_none() test adds fd6c979e65 9pfs: refactor 'name_idx' -> 'nwalked' in v9fs_walk() adds a93d2e89e5 9pfs: fix 'Twalk' to only send error if no component walked adds 15fbff488a tests/9pfs: guard recent 'Twalk' behaviour fix adds 0e43495d3b tests/9pfs: check fid being unaffected in fs_walk_2nd_nonexistent adds 213fda642d Merge tag 'pull-9p-20220616' of https://github.com/cschoeneb [...] adds 638b752da3 pci-bridge/cxl_upstream: Add a CXL switch upstream port adds 18cef1c6a5 pci-bridge/cxl_downstream: Add a CXL switch downstream port adds 3afcbb7b8e docs/cxl: Add switch documentation adds b595d6272e virtio/vhost-user: Fix wrong vhost notifier GPtrArray size adds 90519b9053 virtio-iommu: Add bypass mode support to assigned device adds 08f2030a2e virtio-iommu: Use recursive lock to avoid deadlock adds 23b5f0ff6d virtio-iommu: Add an assert check in translate routine adds 0e660a6f90 crypto: Introduce RSA algorithm adds 9ce305c8be vhost: also check queue state in the vhost_dev_set_log error [...] adds 8c97e4deec acpi/erst: fix fallthrough code upon validation failure adds a28498b1f9 Merge tag 'for_upstream' of git://git.kernel.org/pub/scm/vir [...]
No new revisions were added by this update.
Summary of changes: Makefile | 12 +- accel/kvm/kvm-all.c | 403 ++++++++++++++++++++++++++++++++++++++ backends/cryptodev-builtin.c | 276 ++++++++++++++++++++++---- backends/cryptodev-vhost-user.c | 34 +++- backends/cryptodev.c | 32 ++- configure | 22 +-- docs/system/devices/cxl.rst | 88 ++++++++- hmp-commands-info.hx | 14 ++ hmp-commands.hx | 14 ++ hw/9pfs/9p.c | 63 +++--- hw/acpi/erst.c | 3 + hw/cxl/cxl-host.c | 43 +++- hw/pci-bridge/cxl_downstream.c | 249 +++++++++++++++++++++++ hw/pci-bridge/cxl_upstream.c | 216 ++++++++++++++++++++ hw/pci-bridge/meson.build | 2 +- hw/pci-host/q35.c | 3 +- hw/s390x/virtio-ccw.c | 12 +- hw/virtio/trace-events | 1 + hw/virtio/vhost-user.c | 2 +- hw/virtio/vhost.c | 4 + hw/virtio/virtio-bus.c | 1 + hw/virtio/virtio-crypto.c | 323 +++++++++++++++++++++++------- hw/virtio/virtio-iommu.c | 135 ++++++++++++- hw/virtio/virtio-mmio.c | 18 +- hw/virtio/virtio-pci.c | 1 - include/hw/cxl/cxl.h | 5 + include/hw/virtio/virtio-crypto.h | 5 +- include/hw/virtio/virtio-iommu.h | 4 +- include/monitor/hmp.h | 1 + include/monitor/stats.h | 45 +++++ include/qemu/cutils.h | 18 ++ include/sysemu/cryptodev.h | 83 ++++++-- meson.build | 25 ++- monitor/hmp-cmds.c | 232 ++++++++++++++++++++++ monitor/qmp-cmds.c | 155 +++++++++++++++ qapi/block-core.json | 117 +++++++---- qapi/block-export.json | 21 +- qapi/block.json | 6 +- qapi/meson.build | 1 + qapi/qapi-schema.json | 1 + qapi/stats.json | 249 +++++++++++++++++++++++ tests/qtest/virtio-9p-test.c | 201 ++++++++++++++++++- tests/unit/test-cutils.c | 52 +++++ tests/vm/Makefile.include | 26 ++- util/cutils.c | 34 +++- 45 files changed, 2950 insertions(+), 302 deletions(-) create mode 100644 hw/pci-bridge/cxl_downstream.c create mode 100644 hw/pci-bridge/cxl_upstream.c create mode 100644 include/monitor/stats.h create mode 100644 qapi/stats.json