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 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 [...]
No new revisions were added by this update.
Summary of changes: Makefile | 12 +- accel/kvm/kvm-all.c | 403 +++++++++++++++++++++++++++++++++++++++++++ configure | 22 +-- hmp-commands-info.hx | 14 ++ hmp-commands.hx | 14 ++ hw/9pfs/9p.c | 63 ++++--- hw/pci-host/q35.c | 3 +- hw/s390x/virtio-ccw.c | 12 +- hw/virtio/virtio-bus.c | 1 + hw/virtio/virtio-mmio.c | 18 +- hw/virtio/virtio-pci.c | 1 - include/monitor/hmp.h | 1 + include/monitor/stats.h | 45 +++++ include/qemu/cutils.h | 18 ++ 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 +++- 27 files changed, 1605 insertions(+), 142 deletions(-) create mode 100644 include/monitor/stats.h create mode 100644 qapi/stats.json