This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from f2c7c76c5d0a Linux 5.2-rc3 new 3d840e0636be virtio: add unlikely() to WARN_ON_ONCE() new 6166e5330c38 virtio: Fix indentation of VIRTIO_MMIO new e82b9b0727ff vhost: introduce vhost_exceeds_weight() new e2412c07f8f3 vhost_net: fix possible infinite loop new e79b431fb901 vhost: vsock: add weight support new c1ea02f15ab5 vhost: scsi: add weight support new f340208fe273 Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linu [...] new d3c976c14ad8 sparc64: Fix regression in non-hypervisor TLB flush xcall new 80caf43549e7 mdesc: fix a missing-check bug in get_vdev_port_node_info() new 56cd0aefa475 sparc: perf: fix updated event period in response to PERF_ [...] new 01e7a841b434 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc new 8183db10db63 math-emu: Use statement expressions to fix Wshift-count-ov [...] new ed32949e0acb nds32: Avoid IEX status being incorrectly modified new 932296120543 nds32: add new emulations for floating point instruction new 30d1d92a888d Merge tag 'nds32-for-linux-5.2-rc3' of git://git.kernel.or [...]
The 15 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: 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 +- 36 files changed, 549 insertions(+), 116 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