qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 0/8] Linux user for 5.2 patches
@ 2020-08-31 11:07 Laurent Vivier
  2020-08-31 11:07 ` [PULL 1/8] linux-user: Add support for a group of btrfs ioctls used for subvolumes Laurent Vivier
                   ` (8 more replies)
  0 siblings, 9 replies; 15+ messages in thread
From: Laurent Vivier @ 2020-08-31 11:07 UTC (permalink / raw)
  To: qemu-devel; +Cc: Laurent Vivier

The following changes since commit 39335fab59e11cfda9b7cf63929825db2dd3a3e0:

  Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-5.2-pull-=
request' into staging (2020-08-28 22:30:11 +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 d6676fc62a52e020df32abf927c2e7183781a2e3:

  linux-user: Add support for btrfs ioctls used to scrub a filesystem (2020-0=
8-29 10:14:52 +0200)

----------------------------------------------------------------
Add btrfs support

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

Filip Bozuta (8):
  linux-user: Add support for a group of btrfs ioctls used for
    subvolumes
  linux-user: Add support for a group of btrfs ioctls used for snapshots
  linux-user: Add support for btrfs ioctls used to manipulate with
    devices
  linux-user: Add support for btrfs ioctls used to get/set features
  linux-user: Add support for a group of btrfs inode ioctls
  linux-user: Add support for two btrfs ioctls used for subvolume
  linux-user: Add support for btrfs ioctls used to manage quota
  linux-user: Add support for btrfs ioctls used to scrub a filesystem

 configure                  |   9 ++
 linux-user/ioctls.h        | 124 ++++++++++++++++++++++++++++
 linux-user/syscall.c       |   3 +
 linux-user/syscall_defs.h  |  37 +++++++++
 linux-user/syscall_types.h | 163 +++++++++++++++++++++++++++++++++++++
 5 files changed, 336 insertions(+)

--=20
2.26.2



^ permalink raw reply	[flat|nested] 15+ messages in thread
* [PULL 0/8] Linux user for 5.2 patches
@ 2020-10-26 22:03 Laurent Vivier
  2020-10-28 16:25 ` Peter Maydell
  0 siblings, 1 reply; 15+ messages in thread
From: Laurent Vivier @ 2020-10-26 22:03 UTC (permalink / raw)
  To: qemu-devel; +Cc: Laurent Vivier

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



^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2020-10-28 16:26 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-31 11:07 [PULL 0/8] Linux user for 5.2 patches Laurent Vivier
2020-08-31 11:07 ` [PULL 1/8] linux-user: Add support for a group of btrfs ioctls used for subvolumes Laurent Vivier
2020-08-31 11:07 ` [PULL 2/8] linux-user: Add support for a group of btrfs ioctls used for snapshots Laurent Vivier
2020-08-31 11:07 ` [PULL 3/8] linux-user: Add support for btrfs ioctls used to manipulate with devices Laurent Vivier
2020-08-31 11:07 ` [PULL 4/8] linux-user: Add support for btrfs ioctls used to get/set features Laurent Vivier
2020-08-31 11:07 ` [PULL 5/8] linux-user: Add support for a group of btrfs inode ioctls Laurent Vivier
2020-08-31 11:07 ` [PULL 6/8] linux-user: Add support for two btrfs ioctls used for subvolume Laurent Vivier
2020-08-31 11:07 ` [PULL 7/8] linux-user: Add support for btrfs ioctls used to manage quota Laurent Vivier
2020-08-31 11:07 ` [PULL 8/8] linux-user: Add support for btrfs ioctls used to scrub a filesystem Laurent Vivier
2020-09-01 13:06 ` [PULL 0/8] Linux user for 5.2 patches Peter Maydell
2020-09-01 13:54   ` Filip Bozuta
2020-09-01 14:40     ` Laurent Vivier
2020-09-01 14:02   ` Laurent Vivier
  -- strict thread matches above, loose matches on Subject: below --
2020-10-26 22:03 Laurent Vivier
2020-10-28 16:25 ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).