[Qemu-devel] [PULL 00/13] Linux user for 2.12 patches

Laurent Vivier posted 13 patches 6 years, 3 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180123144807.5618-1-laurent@vivier.eu
Test checkpatch passed
Test docker-build@min-glib passed
Test docker-mingw@fedora passed
Test docker-quick@centos6 passed
Test ppc passed
Test s390x passed
accel/tcg/translate-all.c |  50 ++++++++-----
accel/tcg/user-exec.c     |  52 +++++++-------
hw/core/Makefile.objs     |   5 +-
hw/core/qdev-fw.c         |  96 +++++++++++++++++++++++++
hw/core/qdev.c            |  77 --------------------
linux-user/elfload.c      |   3 +-
linux-user/main.c         |   9 ++-
linux-user/mmap.c         |   2 +-
linux-user/syscall.c      | 177 +++++++++++++++++++++++++++++++++++++++++-----
linux-user/syscall_defs.h |   6 +-
10 files changed, 328 insertions(+), 149 deletions(-)
create mode 100644 hw/core/qdev-fw.c
[Qemu-devel] [PULL 00/13] Linux user for 2.12 patches
Posted by Laurent Vivier 6 years, 3 months ago
The following changes since commit 52483b067cce4a88ffbf8fbeea26de7549d2ad23:

  Merge remote-tracking branch 'remotes/huth/tags/pull-request-2018-01-22' into staging (2018-01-23 10:15:09 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 95d0307cc10ca3df879c1be519f1ad650efb20a8:

  linux-user: implement renameat2 (2018-01-23 14:27:33 +0100)

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

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

Andreas Schwab (1):
  linux-user: implement renameat2

Laurent Vivier (1):
  linux-user: remove nmi.c and fw-path-provider.c

Marco A L Barbosa (1):
  linux-user: Add AT_SECURE auxval

Maximilian Riemensberger (1):
  linux-user/mmap.c: Avoid choosing NULL as start address

Peter Maydell (7):
  linux-user: Fix locking order in fork_start()
  linux-user: wrap fork() in a start/end exclusive section
  linux-user: Fix length calculations in host_to_target_cmsg()
  linux-user: Don't use CMSG_ALIGN(sizeof struct cmsghdr)
  linux-user: Translate flags argument to dup3 syscall
  linux-user: Propagate siginfo_t through to handle_cpu_signal()
  page_unprotect(): handle calls to pages that are PAGE_WRITE

Samuel Thibault (2):
  linux-user: Fix sched_get/setaffinity conversion
  linux-user: Add getcpu() support

 accel/tcg/translate-all.c |  50 ++++++++-----
 accel/tcg/user-exec.c     |  52 +++++++-------
 hw/core/Makefile.objs     |   5 +-
 hw/core/qdev-fw.c         |  96 +++++++++++++++++++++++++
 hw/core/qdev.c            |  77 --------------------
 linux-user/elfload.c      |   3 +-
 linux-user/main.c         |   9 ++-
 linux-user/mmap.c         |   2 +-
 linux-user/syscall.c      | 177 +++++++++++++++++++++++++++++++++++++++++-----
 linux-user/syscall_defs.h |   6 +-
 10 files changed, 328 insertions(+), 149 deletions(-)
 create mode 100644 hw/core/qdev-fw.c

-- 
2.14.3


Re: [Qemu-devel] [PULL 00/13] Linux user for 2.12 patches
Posted by Peter Maydell 6 years, 3 months ago
On 23 January 2018 at 14:47, Laurent Vivier <laurent@vivier.eu> wrote:
> The following changes since commit 52483b067cce4a88ffbf8fbeea26de7549d2ad23:
>
>   Merge remote-tracking branch 'remotes/huth/tags/pull-request-2018-01-22' into staging (2018-01-23 10:15:09 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/vivier/qemu.git tags/linux-user-for-2.12-pull-request
>
> for you to fetch changes up to 95d0307cc10ca3df879c1be519f1ad650efb20a8:
>
>   linux-user: implement renameat2 (2018-01-23 14:27:33 +0100)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM