All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL v2 00/19] Linux user for 5.1 patches
@ 2020-06-06 13:15 Laurent Vivier
  2020-06-06 13:15 ` [PULL v2 01/19] linux-user, alpha: fix oldumount syscall Laurent Vivier
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: Laurent Vivier @ 2020-06-06 13:15 UTC (permalink / raw)
  To: qemu-devel; +Cc: Riku Voipio, Laurent Vivier

The following changes since commit ddc760832fa8cf5e93b9d9e6e854a5114ac63510:

  Merge remote-tracking branch 'remotes/gkurz/tags/9p-next-2020-05-26' into s=
taging (2020-05-26 14:05:53 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 95722b27845b972250a7d4f93b693b01e2a0c3a1:

  stubs: Restrict ui/win32-kbd-hook to system-mode (2020-06-05 21:23:22 +0200)

----------------------------------------------------------------
linux-user pull request 20200605-v2

Implement F_OFD_ fcntl() command, /proc/cpuinfo for hppa
Fix socket(), prnctl() error codes, underflow in target_mremap,
    epoll_create() strace, oldumount for alpha
User-mode build dependencies improvement

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

Andreas Schwab (1):
  linux-user: implement OFD locks

Helge Deller (2):
  linux-user: return target error codes for socket() and prctl()
  linux-user: Add support for /proc/cpuinfo on hppa platform

Jonathan Marler (1):
  linux-user/mmap.c: fix integer underflow in target_mremap

Laurent Vivier (1):
  linux-user, alpha: fix oldumount syscall

Philippe Mathieu-Daud=C3=A9 (13):
  Makefile: Only build virtiofsd if system-mode is enabled
  configure: Avoid building TCG when not needed
  tests/Makefile: Only display TCG-related tests when TCG is available
  tests/Makefile: Restrict some softmmu-only tests
  util/Makefile: Reduce the user-mode object list
  stubs/Makefile: Reduce the user-mode object list
  target/riscv/cpu: Restrict CPU migration to system-mode
  exec: Assert CPU migration is not used on user-only build
  arch_init: Remove unused 'qapi-commands-misc.h' include
  target/i386: Restrict CpuClass::get_crash_info() to system-mode
  target/s390x: Restrict CpuClass::get_crash_info() to system-mode
  hw/core: Restrict CpuClass::get_crash_info() to system-mode
  stubs: Restrict ui/win32-kbd-hook to system-mode

Sergei Trofimovich (1):
  linux-user/strace.list: fix epoll_create{,1} -strace output

 Makefile                   |  2 +-
 arch_init.c                |  1 -
 configure                  |  4 +++
 exec.c                     |  4 ++-
 hw/core/cpu.c              |  2 ++
 include/hw/core/cpu.h      |  7 ++++-
 linux-user/generic/fcntl.h |  4 +++
 linux-user/mmap.c          |  2 +-
 linux-user/strace.list     |  4 +--
 linux-user/syscall.c       | 33 +++++++++++++++++----
 stubs/Makefile.objs        | 52 +++++++++++++++++++--------------
 target/i386/cpu.c          |  6 +++-
 target/riscv/cpu.c         |  6 ++--
 target/s390x/cpu.c         | 12 ++++----
 tests/Makefile.include     | 18 ++++++------
 util/Makefile.objs         | 59 ++++++++++++++++++++++++--------------
 16 files changed, 143 insertions(+), 73 deletions(-)

--=20
2.26.2



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

end of thread, other threads:[~2020-06-08 12:33 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-06 13:15 [PULL v2 00/19] Linux user for 5.1 patches Laurent Vivier
2020-06-06 13:15 ` [PULL v2 01/19] linux-user, alpha: fix oldumount syscall Laurent Vivier
2020-06-06 13:15 ` [PULL v2 02/19] linux-user: return target error codes for socket() and prctl() Laurent Vivier
2020-06-06 13:15 ` [PULL v2 03/19] linux-user: Add support for /proc/cpuinfo on hppa platform Laurent Vivier
2020-06-06 13:15 ` [PULL v2 04/19] linux-user/strace.list: fix epoll_create{, 1} -strace output Laurent Vivier
2020-06-06 13:15 ` [PULL v2 05/19] linux-user/mmap.c: fix integer underflow in target_mremap Laurent Vivier
2020-06-06 13:15 ` [PULL v2 06/19] linux-user: implement OFD locks Laurent Vivier
2020-06-06 13:15 ` [PULL v2 07/19] Makefile: Only build virtiofsd if system-mode is enabled Laurent Vivier
2020-06-06 13:15 ` [PULL v2 08/19] configure: Avoid building TCG when not needed Laurent Vivier
2020-06-06 13:15 ` [PULL v2 09/19] tests/Makefile: Only display TCG-related tests when TCG is available Laurent Vivier
2020-06-06 13:15 ` [PULL v2 10/19] tests/Makefile: Restrict some softmmu-only tests Laurent Vivier
2020-06-06 13:15 ` [PULL v2 11/19] util/Makefile: Reduce the user-mode object list Laurent Vivier
2020-06-06 13:16 ` [PULL v2 12/19] stubs/Makefile: " Laurent Vivier
2020-06-06 13:16 ` [PULL v2 13/19] target/riscv/cpu: Restrict CPU migration to system-mode Laurent Vivier
2020-06-06 13:16 ` [PULL v2 14/19] exec: Assert CPU migration is not used on user-only build Laurent Vivier
2020-06-06 13:16 ` [PULL v2 15/19] arch_init: Remove unused 'qapi-commands-misc.h' include Laurent Vivier
2020-06-06 13:16 ` [PULL v2 16/19] target/i386: Restrict CpuClass::get_crash_info() to system-mode Laurent Vivier
2020-06-06 13:16 ` [PULL v2 17/19] target/s390x: " Laurent Vivier
2020-06-06 13:16 ` [PULL v2 18/19] hw/core: " Laurent Vivier
2020-06-06 13:16 ` [PULL v2 19/19] stubs: Restrict ui/win32-kbd-hook " Laurent Vivier
2020-06-08 12:31 ` [PULL v2 00/19] Linux user for 5.1 patches Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.