Hi, Here is my current collection of fixes for rc1. We have a couple of documentation tweaks including the final bit of enabling work for the plugin API to be included via kernel-doc. We have some semihosting fixes which have been on the list before which just need the final bit of review. Finally there is a selection of tweaks for CI issues which hopefully get BSD (and Cirrus) up and running again.
The following still need review: - tests/tcg: add HeapInfo checking to semihosting test - linux-user/riscv: initialise the TaskState heap/stack info - semihosting: move semihosting tests to multiarch - docs/devel: expand style section of memory management - scripts/kernel-doc: strip QEMU_ from function definitions Alex Bennée (9): scripts/kernel-doc: strip QEMU_ from function definitions docs/devel: include the plugin API information from the headers docs/devel: expand style section of memory management tools/virtiofsd: include --socket-group in help semihosting: move semihosting tests to multiarch semihosting/arm-compat-semi: unify GET/SET_ARG helpers semihosting/arm-compat-semi: don't use SET_ARG to report SYS_HEAPINFO linux-user/riscv: initialise the TaskState heap/stack info tests/tcg: add HeapInfo checking to semihosting test Eric Blake (2): utils: Tighter tests for qemu_strtosz utils: Work around mingw strto*l bug with 0x Thomas Huth (3): gitlab-ci.yml: Merge the trace-backend testing into other jobs configure: Don't use the __atomic_*_16 functions for testing 128-bit support cirrus.yml: Update the FreeBSD task to version 12.2 docs/devel/style.rst | 46 +++-- docs/devel/tcg-plugins.rst | 5 + configure | 6 +- tests/tcg/aarch64/semicall.h | 18 ++ tests/tcg/arm/semicall.h | 15 +- tests/tcg/riscv64/semicall.h | 22 +++ linux-user/riscv/cpu_loop.c | 5 + semihosting/arm-compat-semi.c | 62 +++---- tests/tcg/arm/semihosting.c | 26 --- .../arm-compat-semi}/semiconsole.c | 2 + .../multiarch/arm-compat-semi/semihosting.c | 71 ++++++++ tests/unit/test-cutils.c | 171 +++++++++++++++++- tools/virtiofsd/fuse_lowlevel.c | 1 + util/cutils.c | 33 +++- .cirrus.yml | 7 +- .gitlab-ci.yml | 30 +-- MAINTAINERS | 1 + scripts/kernel-doc | 3 + tests/tcg/Makefile.target | 3 + tests/tcg/aarch64/Makefile.target | 18 -- tests/tcg/arm/Makefile.target | 22 +-- tests/tcg/multiarch/Makefile.target | 31 ++++ 22 files changed, 430 insertions(+), 168 deletions(-) create mode 100644 tests/tcg/aarch64/semicall.h create mode 100644 tests/tcg/riscv64/semicall.h delete mode 100644 tests/tcg/arm/semihosting.c rename tests/tcg/{arm => multiarch/arm-compat-semi}/semiconsole.c (93%) create mode 100644 tests/tcg/multiarch/arm-compat-semi/semihosting.c -- 2.20.1