This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-aarch64-build_cross in repository toolchain/ci/qemu.
from 4a74626970 Merge remote-tracking branch 'remotes/stefanha-gitlab/tags/t [...] adds cece116c93 configure: add option for virtiofsd adds 800ad114f1 virtiofsd: passthrough_ll: set FUSE_LOG_INFO as default log_level adds 06844584b6 virtiofsd: add container-friendly -o sandbox=chroot option adds 6084633dff tools/virtiofsd: xattr name mappings: Add option adds 4f088dbf98 tools/virtiofsd: xattr name mappings: Map client xattr names adds 6409cf19ca tools/virtiofsd: xattr name mappings: Map server xattr names adds 491bfaea3b tools/virtiofsd: xattr name mapping examples adds 1d84a0213a tools/virtiofsd: xattr name mappings: Simple 'map' adds 97d741cc96 linux/fuse.h: Pull in from Linux adds 2f10415abf virtiofsd: Announce FUSE_ATTR_FLAGS adds e2577435d3 virtiofsd: Add attr_flags to fuse_entry_param adds ede24b6be7 virtiofsd: Add fuse_reply_attr_with_flags() adds eba8b096c1 virtiofsd: Store every lo_inode's parent_dev adds 08dce386e7 virtiofsd: Announce sub-mount points adds 45ced7ca2f tests/acceptance/boot_linux: Accept SSH pubkey adds c93a656f7b tests/acceptance: Add virtiofs_submounts.py adds 725ca3313a Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/p [...] adds 7fb1f203d7 tests/boot_linux_console: Boot Trusted Firmware-A on the Ras [...] adds 9923375807 tests/acceptance: Add a 'virt_kvm' test using the GICv3 adds 9eb716513d tests/acceptance: Allow running Orange Pi test using cached [...] adds 4c9ac67230 docs/devel/testing.rst: Update outdated Avocado URLs adds cfc1105649 Merge remote-tracking branch 'remotes/philmd-gitlab/tags/acc [...] new c1b2982627 hw/misc/led: Add a LED device new ddb67f6402 hw/misc/led: Allow connecting from GPIO output new 4aef43991a hw/misc/led: Emit a trace event when LED intensity has changed new 7cfbde5ea1 hw/arm/aspeed: Add the 3 front LEDs drived by the PCA9552 #1 new 65ad1da23e hw/misc/mps2-fpgaio: Use the LED device new 435db7ebf5 hw/misc/mps2-scc: Use the LED device new 06972067c4 hw/arm/tosa: Replace fprintf() calls by LED devices new cddfbe0774 Merge remote-tracking branch 'remotes/philmd-gitlab/tags/led [...] new 33dc9914ea Revert series: virtiofsd: Announce submounts to the guest new d9a5eba477 Fix stack smashing when handling PR_GET_PDEATHSIG new b94e2b4e34 linux-user: Support f_flags in statfs64 when available. new 29fe5029a4 linux-user: update syscall_nr.h to Linux 5.9-rc7 new b6bcab38de linux-user: update mips/syscall-args-o32.c.inc to Linux 5.9-rc7 new 0cb113ad1a linux-user: update syscall.tbl to Linux 5.9-rc7 new 0deb6556c3 linux-user: remove _sysctl new e554eb4bb5 linux-user: correct errno returned from accept4() syscall new ab97f0505b target/xtensa: enable all coprocessors for linux-user new 5c27a85518 Merge remote-tracking branch 'remotes/vivier2/tags/linux-use [...]
The 18 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: MAINTAINERS | 6 + configure | 8 +- docs/devel/testing.rst | 4 +- docs/tools/virtiofsd.rst | 193 +++++++- hw/arm/Kconfig | 2 + hw/arm/aspeed.c | 20 + hw/arm/tosa.c | 40 +- hw/misc/Kconfig | 5 + hw/misc/led.c | 161 +++++++ hw/misc/meson.build | 1 + hw/misc/mps2-fpgaio.c | 23 +- hw/misc/mps2-scc.c | 27 +- hw/misc/trace-events | 6 +- include/hw/misc/led.h | 97 ++++ include/hw/misc/mps2-fpgaio.h | 2 + include/hw/misc/mps2-scc.h | 2 + include/hw/qdev-core.h | 16 + linux-user/aarch64/syscall_nr.h | 7 +- linux-user/alpha/syscall.tbl | 4 +- linux-user/arm/syscall.tbl | 4 +- linux-user/hppa/syscall.tbl | 8 +- linux-user/i386/syscall_32.tbl | 820 +++++++++++++++++---------------- linux-user/m68k/syscall.tbl | 4 +- linux-user/microblaze/syscall.tbl | 4 +- linux-user/mips/syscall-args-o32.c.inc | 4 + linux-user/mips/syscall_o32.tbl | 8 +- linux-user/mips64/syscall_n32.tbl | 8 +- linux-user/mips64/syscall_n64.tbl | 4 +- linux-user/nios2/syscall_nr.h | 7 +- linux-user/openrisc/syscall_nr.h | 8 +- linux-user/ppc/syscall.tbl | 30 +- linux-user/riscv/syscall32_nr.h | 8 +- linux-user/riscv/syscall64_nr.h | 8 +- linux-user/s390x/syscall.tbl | 8 +- linux-user/sh4/syscall.tbl | 4 +- linux-user/sparc/syscall.tbl | 8 +- linux-user/sparc64/syscall.tbl | 8 +- linux-user/syscall.c | 19 +- linux-user/x86_64/syscall_64.tbl | 742 ++++++++++++++--------------- linux-user/xtensa/syscall.tbl | 4 +- meson.build | 1 + meson_options.txt | 2 + scripts/gensyscalls.sh | 3 +- target/xtensa/cpu.c | 1 + tests/acceptance/boot_linux.py | 17 +- tests/acceptance/boot_linux_console.py | 24 + tools/meson.build | 17 +- tools/virtiofsd/helper.c | 8 + tools/virtiofsd/passthrough_ll.c | 538 ++++++++++++++++++++- 49 files changed, 2054 insertions(+), 899 deletions(-) create mode 100644 hw/misc/led.c create mode 100644 include/hw/misc/led.h