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-master-arm-stable-allmodconfig in repository toolchain/ci/qemu.
from c88da1f3da Merge remote-tracking branch 'remotes/quic/tags/pull-hex-202 [...] adds 2eb4461ad5 tests/docker: Add debian-nios2-cross image adds b58a4e688a tests/docker: Add debian-microblaze-cross image adds d654283d0b tests/tcg: Enable container_cross_cc for microblaze adds 73594998f7 tests/tcg: Fix some targets default cross compiler path adds a7181a2876 tests/docker: split PARTIAL into PARTIAL and VIRTUAL images adds 67f80eb4d0 tests/tcg: enable debian-nios2-cross for test building adds 482cd5f08e ebpf: really include it only in system emulators adds ad039c506e plugins/cache: freed heap-allocated mutexes adds 14f3110a99 plugins/cache: implement unified L2 cache emulation adds 53366adf9c plugins/cache: split command line arguments into name and value adds 447f935674 plugins/cache: make L2 emulation optional through args adds b8312e04c8 docs/tcg-plugins: add L2 arguments to cache docs adds a00e37a4be chardev: don't exit() straight away on C-a x adds e83f79b3fa tests/plugins: extend the insn plugin to track opcode sizes adds 357af9be5c plugins: try and make plugin_insn_append more ergonomic adds 8ef3fdf952 tests/tcg: remove duplicate EXTRA_RUNS adds 4a82be77de gdbstub: Switch to the thread receiving a signal adds 41bf739592 tests/tcg: remove debug polluting make output adds b31b3fd0c0 tests/vm/openbsd: Update to release 7.0 adds 18e356a53a Merge remote-tracking branch 'remotes/stsquad/tags/pull-for- [...] adds 25ddb946e6 e1000: fix tx re-entrancy problem adds 3fd641ac5e Fix virtio-net-pci* "vectors" compat adds e4d96a7eb8 Merge remote-tracking branch 'remotes/jasonwang/tags/net-pul [...] adds e86a93f554 virtio-gpu: splitting one extended mode guest fb into n-scanouts adds 1ab2628fc6 ui/gtk-egl: un-tab and re-tab should destroy egl surface and [...] adds 01eb4749f0 ui/gtk-egl: make sure the right context is set as the current adds 4872a023a5 ui/gtk-egl: guest fb texture needs to be regenerated when re [...] adds 7cf87257f7 ui/gtk: gd_draw_event returns FALSE when no cairo surface is bound adds 1350ff156b ui/gtk-egl: blitting partial guest fb to the proper scanout surface adds c39deb2181 Merge remote-tracking branch 'remotes/kraxel/tags/egl-202111 [...] adds 565599807f migration: Check that postcopy fd's are not NULL adds f78d4ed701 docs: fix qemu incorrect tag adds 63ed851de4 Merge remote-tracking branch 'remotes/juanquintela/tags/migr [...] adds cd0a9e983c docs/sphinx: add loaded modules to generated depfile adds 905655ea6a docs/sphinx: add static files to generated depfile adds 0dd35c1629 docs/sphinx: add templates files to generated depfile adds 706bbad2ba tests/qapi-schema/meson: add depfile to sphinx doc adds 89bcfe780a meson: drop sphinx_extn_depends adds ed9e6d65ed meson: drop sphinx_template_files adds 96871b3854 docs/sphinx: set navigation_with_keys=True adds 9423751645 docs/sphinx: add 's' keyboard binding to focus search adds 450e0f28a4 docs: remove non-reference uses of single backticks adds ca0a0d122c docs: (further) remove non-reference uses of single backticks adds c11b3a1dd3 docs/sphinx: change default role to "any" adds 260f9210d2 Merge remote-tracking branch 'remotes/marcandre.lureau/tags/ [...]
No new revisions were added by this update.
Summary of changes: MAINTAINERS | 3 + accel/tcg/plugin-gen.c | 3 +- accel/tcg/translator.c | 2 +- chardev/char-mux.c | 3 +- contrib/plugins/cache.c | 318 +++++++++++++++------ docs/conf.py | 12 +- docs/devel/build-system.rst | 16 +- docs/devel/fuzzing.rst | 9 +- docs/devel/tcg-plugins.rst | 22 +- docs/interop/live-block-operations.rst | 2 +- docs/meson.build | 10 - docs/sphinx-static/custom.js | 9 + docs/sphinx/depfile.py | 19 +- docs/system/guest-loader.rst | 2 +- docs/system/i386/sgx.rst | 6 +- gdbstub.c | 8 +- hw/core/machine.c | 2 +- hw/display/virtio-gpu-udmabuf-stubs.c | 3 +- hw/display/virtio-gpu-udmabuf.c | 22 +- hw/display/virtio-gpu.c | 4 +- hw/net/e1000.c | 7 + include/exec/plugin-gen.h | 12 +- include/hw/virtio/virtio-gpu.h | 5 +- include/qemu/module.h | 6 +- include/qemu/plugin.h | 7 +- include/ui/console.h | 4 + meson.build | 2 - migration/postcopy-ram.c | 4 + qapi/block-core.json | 4 +- qapi/migration.json | 10 +- qemu-options.hx | 4 +- stubs/meson.build | 1 + stubs/qmp-quit.c | 8 + tests/docker/Makefile.include | 39 ++- .../debian-microblaze-cross.d/build-toolchain.sh | 88 ++++++ .../debian-nios2-cross.d/build-toolchain.sh | 87 ++++++ tests/docker/dockerfiles/debian-toolchain.docker | 36 +++ tests/plugin/insn.c | 37 ++- tests/qapi-schema/meson.build | 4 +- tests/tcg/configure.sh | 26 +- tests/tcg/multiarch/Makefile.target | 13 +- ...xfer-auxv-read.py => test-thread-breakpoint.py} | 9 +- tests/tcg/nios2/Makefile.target | 11 + tests/tcg/sh4/Makefile.target | 6 + tests/vm/openbsd | 7 +- ui/egl-helpers.c | 25 +- ui/gtk-egl.c | 10 + ui/gtk.c | 23 ++ 48 files changed, 778 insertions(+), 192 deletions(-) create mode 100644 docs/sphinx-static/custom.js create mode 100644 stubs/qmp-quit.c create mode 100755 tests/docker/dockerfiles/debian-microblaze-cross.d/build-toolchain.sh create mode 100755 tests/docker/dockerfiles/debian-nios2-cross.d/build-toolchain.sh create mode 100644 tests/docker/dockerfiles/debian-toolchain.docker copy tests/tcg/multiarch/gdbstub/{test-qxfer-auxv-read.py => test-thread-breakpoin [...] create mode 100644 tests/tcg/nios2/Makefile.target