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 741bdeb1d5 Merge remote-tracking branch 'remotes/kwolf/tags/for-upstrea [...] adds 2863bd565c MAINTAINERS: Add myself as a reviewer for SDL audio adds 584ab347ce MAINTAINERS: add myself as partial audio reviewer adds f5918a9928 microvm: add device tree support. adds 760deab30e ui/gtk: Update the refresh rate for gl-area too adds 55f4b767f6 ui/gtk: skip any extra draw of same guest scanout blob res adds 0c9d0641ac ui/console: replace QEMUFIFO with Fifo8 adds ec22251904 ui/console: replace kbd_timer with chr_accept_input callback adds 014b00cc0a ui/console: remove chardev frontend connected test adds 7c8d295b27 hw/misc: deprecate the 'sga' device adds 58d7d4c786 usb-storage: tag usb_msd_csw as packed struct adds 58b6476164 Merge remote-tracking branch 'remotes/kraxel/tags/misc-20211 [...] adds 3e11e0b2dd monitor: remove 'info ioapic' HMP command adds 0ca117a756 monitor: make hmp_handle_error return a boolean adds 0e33e3d2c4 docs/devel: rename file for writing monitor commands adds fa2613afa1 docs/devel: tweak headings in monitor command docs adds 6fa6b54f5b docs/devel: update error handling guidance for HMP commands adds f9429c6790 monitor: introduce HumanReadableText and HMP support adds f2de406f29 docs/devel: document expectations for QAPI data modelling for QMP adds a45cfcbb01 docs/devel: add example of command returning unstructured text adds 3d312f417d docs/devel: document expectations for HMP commands in the future adds dd98234c05 qapi: introduce x-query-roms QMP command adds 37087fde0e qapi: introduce x-query-profile QMP command adds 1b8ae799d8 qapi: introduce x-query-numa QMP command adds fc30920731 qapi: introduce x-query-usb QMP command adds 8dbbca5c05 qapi: introduce x-query-rdma QMP command adds ca411b7c8a qapi: introduce x-query-ramblock QMP command adds 91f2fa7045 qapi: introduce x-query-irq QMP command adds 3a841ab53f qapi: introduce x-query-jit QMP command adds b6a7f3e0d2 qapi: introduce x-query-opcount QMP command adds e86e00a249 Merge remote-tracking branch 'remotes/berrange/tags/hmp-x-qm [...]
No new revisions were added by this update.
Summary of changes: .gitlab-ci.d/buildtest.yml | 1 - MAINTAINERS | 4 + accel/tcg/cpu-exec.c | 51 ++- accel/tcg/hmp.c | 22 +- accel/tcg/translate-all.c | 84 ++--- configs/targets/i386-softmmu.mak | 1 + configs/targets/x86_64-softmmu.mak | 1 + docs/about/deprecated.rst | 10 + docs/devel/index.rst | 2 +- ...p-commands.rst => writing-monitor-commands.rst} | 167 ++++++++-- hmp-commands-info.hx | 29 +- hw/core/loader.c | 39 ++- hw/core/machine-hmp-cmds.c | 38 +-- hw/core/machine-qmp-cmds.c | 40 +++ hw/display/virtio-gpu-udmabuf.c | 2 +- hw/i386/meson.build | 2 +- hw/i386/microvm-dt.c | 341 +++++++++++++++++++++ hw/i386/microvm-dt.h | 8 + hw/i386/microvm.c | 2 + hw/misc/sga.c | 2 + hw/rdma/rdma_rm.c | 104 +++---- hw/rdma/rdma_rm.h | 2 +- hw/rdma/vmw/pvrdma_main.c | 31 +- hw/usb/bus.c | 24 +- include/exec/cpu-all.h | 6 +- include/exec/ramlist.h | 2 +- include/hw/i386/microvm.h | 4 + include/hw/rdma/rdma.h | 2 +- include/hw/usb/msd.h | 2 +- include/monitor/hmp-target.h | 1 - include/monitor/hmp.h | 5 +- include/monitor/monitor.h | 2 + include/qapi/type-helpers.h | 14 + include/tcg/tcg.h | 4 +- include/ui/console.h | 1 + monitor/hmp-cmds.c | 99 +----- monitor/hmp.c | 32 +- monitor/misc.c | 46 ++- monitor/monitor-internal.h | 7 + monitor/qmp-cmds.c | 116 +++++++ qapi/common.json | 11 + qapi/machine.json | 110 +++++++ qapi/meson.build | 3 + qapi/qapi-type-helpers.c | 23 ++ softmmu/physmem.c | 19 +- stubs/usb-dev-stub.c | 8 + target/i386/monitor.c | 6 - tcg/tcg.c | 98 +++--- tests/qtest/qmp-cmd-test.c | 8 + ui/console.c | 109 ++----- ui/gtk-egl.c | 40 ++- ui/gtk-gl-area.c | 52 ++-- 52 files changed, 1295 insertions(+), 542 deletions(-) rename docs/devel/{writing-qmp-commands.rst => writing-monitor-commands.rst} (75%) create mode 100644 hw/i386/microvm-dt.c create mode 100644 hw/i386/microvm-dt.h create mode 100644 include/qapi/type-helpers.h create mode 100644 qapi/qapi-type-helpers.c