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-allmodconfig in repository toolchain/ci/linux.
from 7bd1d5edd016 Merge branch 'x86-urgent-for-linus' of git://git.kernel.or [...] adds 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 [...]
No new revisions were added by this update.
Summary of changes: Makefile | 2 +- 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/math-emu/op-2.h | 17 ++++----- include/math-emu/op-common.h | 11 +++--- tools/virtio/linux/kernel.h | 2 +- 37 files changed, 550 insertions(+), 117 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