This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-release-aarch64-mainline-defconfig in repository toolchain/ci/linux.
from f2c7c76c5d0a Linux 5.2-rc3 adds 3d840e0636be virtio: add unlikely() to WARN_ON_ONCE() adds 6166e5330c38 virtio: Fix indentation of VIRTIO_MMIO adds e82b9b0727ff vhost: introduce vhost_exceeds_weight() adds e2412c07f8f3 vhost_net: fix possible infinite loop adds e79b431fb901 vhost: vsock: add weight support adds c1ea02f15ab5 vhost: scsi: add weight support adds f340208fe273 Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linu [...] adds d3c976c14ad8 sparc64: Fix regression in non-hypervisor TLB flush xcall adds 80caf43549e7 mdesc: fix a missing-check bug in get_vdev_port_node_info() adds 56cd0aefa475 sparc: perf: fix updated event period in response to PERF_ [...] adds 01e7a841b434 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc adds 8183db10db63 math-emu: Use statement expressions to fix Wshift-count-ov [...] adds ed32949e0acb nds32: Avoid IEX status being incorrectly modified adds 932296120543 nds32: add new emulations for floating point instruction adds 30d1d92a888d Merge tag 'nds32-for-linux-5.2-rc3' of git://git.kernel.or [...] adds 66be4e66a7f4 rcu: locking and unlocking need to always be at least barriers adds 89c92142f75e ARC: fix build warnings adds a8c715b4dd73 ARC: mm: SIGSEGV userspace trying to access kernel virtual memory adds ecc906a11c2a ARC: [plat-hsdk]: Add missing multicast filter bins number [...] adds 4c70850aeb2e ARC: [plat-hsdk]: Add missing FIFO size entry in GMAC node adds 780b35b6aafc ARC: [plat-hsdk]: enable creg-gpio controller adds b04700645d78 ARC: [plat-hsdk]: Add support of Vivante GPU adds 46e04c25e72f ARC: [plat-hsdk] Get rid of inappropriate PHY settings adds 788a024921c4 Merge tag 'arc-5.2-rc4' of git://git.kernel.org/pub/scm/li [...]
No new revisions were added by this update.
Summary of changes: arch/arc/boot/dts/hsdk.dts | 45 ++++++++++++++++++++-- arch/arc/configs/hsdk_defconfig | 3 +- arch/arc/include/asm/cmpxchg.h | 14 +++++-- arch/arc/mm/fault.c | 9 ++--- arch/arc/mm/tlb.c | 13 ++++--- arch/nds32/include/asm/bitfield.h | 2 +- arch/nds32/include/asm/fpu.h | 2 +- arch/nds32/include/asm/fpuemu.h | 12 ++++++ arch/nds32/include/asm/syscalls.h | 2 +- arch/nds32/include/uapi/asm/fp_udfiex_crtl.h | 16 ++++++++ arch/nds32/include/uapi/asm/sigcontext.h | 24 ++++++++---- arch/nds32/include/uapi/asm/udftrap.h | 13 ------- arch/nds32/include/uapi/asm/unistd.h | 4 +- arch/nds32/kernel/fpu.c | 15 +++----- arch/nds32/kernel/sys_nds32.c | 26 +++++++------ arch/nds32/math-emu/Makefile | 4 +- arch/nds32/math-emu/fd2si.c | 30 +++++++++++++++ arch/nds32/math-emu/fd2siz.c | 30 +++++++++++++++ arch/nds32/math-emu/fd2ui.c | 30 +++++++++++++++ arch/nds32/math-emu/fd2uiz.c | 30 +++++++++++++++ arch/nds32/math-emu/fpuemu.c | 57 ++++++++++++++++++++++++++-- arch/nds32/math-emu/fs2si.c | 29 ++++++++++++++ arch/nds32/math-emu/fs2siz.c | 29 ++++++++++++++ arch/nds32/math-emu/fs2ui.c | 29 ++++++++++++++ arch/nds32/math-emu/fs2uiz.c | 30 +++++++++++++++ arch/nds32/math-emu/fsi2d.c | 22 +++++++++++ arch/nds32/math-emu/fsi2s.c | 22 +++++++++++ arch/nds32/math-emu/fui2d.c | 22 +++++++++++ arch/nds32/math-emu/fui2s.c | 22 +++++++++++ arch/sparc/kernel/mdesc.c | 2 + arch/sparc/kernel/perf_event.c | 4 ++ arch/sparc/mm/ultra.S | 4 +- drivers/vhost/net.c | 41 +++++++------------- drivers/vhost/scsi.c | 21 ++++++---- drivers/vhost/vhost.c | 20 +++++++++- drivers/vhost/vhost.h | 5 ++- drivers/vhost/vsock.c | 28 ++++++++++---- drivers/virtio/Kconfig | 8 ++-- include/linux/rcupdate.h | 6 +-- include/math-emu/op-2.h | 17 ++++----- include/math-emu/op-common.h | 11 +++--- tools/virtio/linux/kernel.h | 2 +- 42 files changed, 615 insertions(+), 140 deletions(-) create mode 100644 arch/nds32/include/uapi/asm/fp_udfiex_crtl.h delete mode 100644 arch/nds32/include/uapi/asm/udftrap.h create mode 100644 arch/nds32/math-emu/fd2si.c create mode 100644 arch/nds32/math-emu/fd2siz.c create mode 100644 arch/nds32/math-emu/fd2ui.c create mode 100644 arch/nds32/math-emu/fd2uiz.c create mode 100644 arch/nds32/math-emu/fs2si.c create mode 100644 arch/nds32/math-emu/fs2siz.c create mode 100644 arch/nds32/math-emu/fs2ui.c create mode 100644 arch/nds32/math-emu/fs2uiz.c create mode 100644 arch/nds32/math-emu/fsi2d.c create mode 100644 arch/nds32/math-emu/fsi2s.c create mode 100644 arch/nds32/math-emu/fui2d.c create mode 100644 arch/nds32/math-emu/fui2s.c