[PULL 00/13] Linux user for 5.0 patches

Laurent Vivier posted 13 patches 4 years, 1 month ago
Test docker-quick@centos7 passed
Test FreeBSD passed
Test docker-mingw@fedora passed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200220092053.1510215-1-laurent@vivier.eu
Maintainers: Laurent Vivier <laurent@vivier.eu>, Riku Voipio <riku.voipio@iki.fi>
There is a newer version of this series
configure                  |  22 +-
include/qemu/log.h         |   2 +
linux-user/arm/cpu_loop.c  |   5 +-
linux-user/fd-trans.c      |  55 +++--
linux-user/ioctls.h        |  21 ++
linux-user/main.c          |  39 +--
linux-user/qemu.h          |   2 -
linux-user/signal.c        |   2 +-
linux-user/strace.c        | 479 +++++++++++++++++++------------------
linux-user/strace.list     |  52 ++--
linux-user/syscall.c       |  92 +++++--
linux-user/syscall_defs.h  |  84 +++++++
linux-user/syscall_types.h |  66 +++++
linux-user/vm86.c          |   3 +-
util/log.c                 |   2 +
15 files changed, 600 insertions(+), 326 deletions(-)
[PULL 00/13] Linux user for 5.0 patches
Posted by Laurent Vivier 4 years, 1 month ago
The following changes since commit 6c599282f8ab382fe59f03a6cae755b89561a7b3:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2020-02-15-v2' into staging (2020-02-17 13:32:25 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 045823a98c30fbcafa6d6b61a28b284de7038f07:

  linux-user: Add support for selected alsa timer instructions using ioctls (2020-02-19 11:17:40 +0100)

----------------------------------------------------------------
Implement membarrier, SO_RCVTIMEO and SO_SNDTIMEO
Disable by default build of fdt, slirp and tools with linux-user
Improve strace and use qemu_log to send trace to a file
Add partial ALSA ioctl supports

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

Andreas Schwab (2):
  linux-user: Implement membarrier syscall
  linux-user: implement getsockopt SO_RCVTIMEO and SO_SNDTIMEO

Filip Bozuta (5):
  linux-user: Add support for getting alsa timer version and id
  linux-user: Add support for getting/setting specified alsa timer
    parameters using ioctls
  linux-user: Add support for selecting alsa timer using ioctl
  linux-user: Add support for getting/setting selected alsa timer
    parameters using ioctls
  linux-user: Add support for selected alsa timer instructions using
    ioctls

Helge Deller (1):
  linux-user/strace: Improve output of various syscalls

Josh Kunz (3):
  linux-user: Use `qemu_log' for non-strace logging
  linux-user: Use `qemu_log' for strace
  linux-user: remove gemu_log from the linux-user tree

Laurent Vivier (1):
  configure: linux-user doesn't need neither fdt nor slirp

Philippe Mathieu-Daudé (1):
  configure: Avoid compiling system tools on user build by default

 configure                  |  22 +-
 include/qemu/log.h         |   2 +
 linux-user/arm/cpu_loop.c  |   5 +-
 linux-user/fd-trans.c      |  55 +++--
 linux-user/ioctls.h        |  21 ++
 linux-user/main.c          |  39 +--
 linux-user/qemu.h          |   2 -
 linux-user/signal.c        |   2 +-
 linux-user/strace.c        | 479 +++++++++++++++++++------------------
 linux-user/strace.list     |  52 ++--
 linux-user/syscall.c       |  92 +++++--
 linux-user/syscall_defs.h  |  84 +++++++
 linux-user/syscall_types.h |  66 +++++
 linux-user/vm86.c          |   3 +-
 util/log.c                 |   2 +
 15 files changed, 600 insertions(+), 326 deletions(-)

-- 
2.24.1


Re: [PULL 00/13] Linux user for 5.0 patches
Posted by Peter Maydell 4 years, 1 month ago
On Thu, 20 Feb 2020 at 09:22, Laurent Vivier <laurent@vivier.eu> wrote:
>
> The following changes since commit 6c599282f8ab382fe59f03a6cae755b89561a7b3:
>
>   Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2020-02-15-v2' into staging (2020-02-17 13:32:25 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/vivier/qemu.git tags/linux-user-for-5.0-pull-request
>
> for you to fetch changes up to 045823a98c30fbcafa6d6b61a28b284de7038f07:
>
>   linux-user: Add support for selected alsa timer instructions using ioctls (2020-02-19 11:17:40 +0100)
>
> ----------------------------------------------------------------
> Implement membarrier, SO_RCVTIMEO and SO_SNDTIMEO
> Disable by default build of fdt, slirp and tools with linux-user
> Improve strace and use qemu_log to send trace to a file
> Add partial ALSA ioctl supports


Applied, thanks.

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

-- PMM