mbox

[PULL,0/8] Linux user for 5.2 patches

Message ID 20201026220339.195790-1-laurent@vivier.eu
State New
Headers show

Pull-request

git://github.com/vivier/qemu.git tags/linux-user-for-5.2-pull-request

Message

Laurent Vivier Oct. 26, 2020, 10:03 p.m. UTC
The following changes since commit 4c5b97bfd0dd54dc27717ae8d1cd10e14eef1430:

  Merge remote-tracking branch 'remotes/kraxel/tags/modules-20201022-pull-req=
uest' into staging (2020-10-22 12:33:21 +0100)

are available in the Git repository at:

  git://github.com/vivier/qemu.git tags/linux-user-for-5.2-pull-request

for you to fetch changes up to ab97f0505bec6280c5455009b7678daf5c9278bc:

  target/xtensa: enable all coprocessors for linux-user (2020-10-26 12:07:19 =
+0100)

----------------------------------------------------------------
Update syscall numbers to 5.9-rc7
Fixes for prctl(), accept4() and xtensa

----------------------------------------------------------------

Frajo (1):
  linux-user: Support f_flags in statfs64 when available.

Laurent Vivier (4):
  linux-user: update syscall_nr.h to Linux 5.9-rc7
  linux-user: update mips/syscall-args-o32.c.inc to Linux 5.9-rc7
  linux-user: update syscall.tbl to Linux 5.9-rc7
  linux-user: remove _sysctl

Matus Kysel (1):
  linux-user: correct errno returned from accept4() syscall

Max Filippov (1):
  target/xtensa: enable all coprocessors for linux-user

Stephen Long (1):
  Fix stack smashing when handling PR_GET_PDEATHSIG

 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 +-
 scripts/gensyscalls.sh                 |   3 +-
 target/xtensa/cpu.c                    |   1 +
 25 files changed, 899 insertions(+), 834 deletions(-)

--=20
2.26.2

Comments

Peter Maydell Oct. 28, 2020, 4:25 p.m. UTC | #1
On Mon, 26 Oct 2020 at 22:12, Laurent Vivier <laurent@vivier.eu> wrote:
>
> The following changes since commit 4c5b97bfd0dd54dc27717ae8d1cd10e14eef1430:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/modules-20201022-pull-req=
> uest' into staging (2020-10-22 12:33:21 +0100)
>
> are available in the Git repository at:
>
>   git://github.com/vivier/qemu.git tags/linux-user-for-5.2-pull-request
>
> for you to fetch changes up to ab97f0505bec6280c5455009b7678daf5c9278bc:
>
>   target/xtensa: enable all coprocessors for linux-user (2020-10-26 12:07:19 =
> +0100)
>
> ----------------------------------------------------------------
> Update syscall numbers to 5.9-rc7
> Fixes for prctl(), accept4() and xtensa
>

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.2
for any user-visible changes.

-- PMM