qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/24] Linux-user updates
@ 2014-08-15 11:01 riku.voipio
  2014-08-15 11:01 ` [Qemu-devel] [PULL 01/24] linux-user: /proc/self/maps content riku.voipio
                   ` (24 more replies)
  0 siblings, 25 replies; 37+ messages in thread
From: riku.voipio @ 2014-08-15 11:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Riku Voipio

From: Riku Voipio <riku.voipio@linaro.org>

Hi,

A usual set of improvements and bugfixes. The binfmt flag addition is an
ABI break so endusers need to update their binfmt registering scripts.

The following changes since commit 2d591ce2aeebf9620ff527c7946844a3122afeec:

  Merge remote-tracking branch 'remotes/mdroth/qga-pull-2014-08-08' into staging (2014-08-08 14:16:05 +0100)

are available in the git repository at:

  git://git.linaro.org/people/riku.voipio/qemu.git linux-user-for-upstream

for you to fetch changes up to e93757cb483a945e88550e605fc59bb1a1e80ccc:

  linux-user: check return value of malloc() (2014-08-14 16:00:15 +0300)

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

Jincheng Miao (1):
  linux-user: Fix syscall instruction usermode emulation on X86_64

Joakim Tjernlund (1):
  linux-user: make binfmt flag O require P

Mike Frysinger (1):
  linux-user: fix readlink handling with magic exe symlink

Mikhail Ilyin (1):
  linux-user: /proc/self/maps content

Paul Burton (1):
  linux-user: support ioprio_{get, set} syscalls

Peter Maydell (1):
  linux-user: Fix conversion of sigevent argument to timer_create

Riku Voipio (4):
  linux-user: redirect openat calls
  linux-user: support timerfd_{create, gettime, settime} syscalls
  linux-user: support {name_to,open_by}_handle_at syscalls
  linux-user: add setns and unshare

Tom Musta (13):
  linux-user: PPC64 semid_ds Doesnt Include _unused1 and _unused2
  linux-user: Dereference Pointer Argument to ipc/semctl Sys Call
  linux-user: Properly Handle semun Structure In Cross-Endian Situations
  linux-user: Make ipc syscall's third argument an abi_long
  linux-user: Conditionally Pass Attribute Pointer to mq_open()
  linux-user: Detect Negative Message Sizes in msgsnd System Call
  linux-user: Handle NULL sched_param argument to sched_*
  linux-user: Detect fault in sched_rr_get_interval
  linux-user: Move get_ppc64_abi
  linux-user: Minimum Sig Handler Stack Size for PPC64 ELF V2
  linux-user: clock_nanosleep errno Handling on PPC
  linux-user: Support target-to-host translation of mlockall argument
  linux-user: writev Partial Writes

zhanghailiang (1):
  linux-user: check return value of malloc()

 configure                       |  37 +++++
 include/exec/cpu-all.h          |   2 +
 linux-user/aarch64/syscall.h    |   3 +
 linux-user/alpha/syscall.h      |   3 +
 linux-user/arm/syscall.h        |   4 +
 linux-user/cris/syscall.h       |   3 +
 linux-user/elfload.c            |   9 --
 linux-user/i386/syscall.h       |   3 +
 linux-user/m68k/syscall.h       |   4 +
 linux-user/main.c               |  20 ++-
 linux-user/microblaze/syscall.h |   3 +
 linux-user/mips/syscall.h       |   3 +
 linux-user/mips64/syscall.h     |   3 +
 linux-user/openrisc/syscall.h   |   4 +
 linux-user/ppc/syscall.h        |   4 +
 linux-user/ppc/target_cpu.h     |  10 ++
 linux-user/s390x/syscall.h      |   3 +
 linux-user/sh4/syscall.h        |   4 +
 linux-user/signal.c             |  12 +-
 linux-user/sparc/syscall.h      |   3 +
 linux-user/sparc64/syscall.h    |   3 +
 linux-user/strace.c             |  30 ++++
 linux-user/strace.list          |  18 +++
 linux-user/syscall.c            | 347 ++++++++++++++++++++++++++++++++++------
 linux-user/unicore32/syscall.h  |   4 +
 linux-user/x86_64/syscall.h     |   3 +
 scripts/qemu-binfmt-conf.sh     |  36 ++---
 target-i386/seg_helper.c        |   4 +-
 28 files changed, 495 insertions(+), 87 deletions(-)

-- 
2.0.1

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

end of thread, other threads:[~2014-08-18 15:35 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-15 11:01 [Qemu-devel] [PULL 00/24] Linux-user updates riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 01/24] linux-user: /proc/self/maps content riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 02/24] linux-user: redirect openat calls riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 03/24] linux-user: make binfmt flag O require P riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 04/24] linux-user: Fix syscall instruction usermode emulation on X86_64 riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 05/24] linux-user: Fix conversion of sigevent argument to timer_create riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 06/24] linux-user: fix readlink handling with magic exe symlink riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 07/24] linux-user: support timerfd_{create, gettime, settime} syscalls riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 08/24] linux-user: support ioprio_{get, set} syscalls riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 09/24] linux-user: support {name_to, open_by}_handle_at syscalls riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 10/24] linux-user: add setns and unshare riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 11/24] linux-user: PPC64 semid_ds Doesnt Include _unused1 and _unused2 riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 12/24] linux-user: Dereference Pointer Argument to ipc/semctl Sys Call riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 13/24] linux-user: Properly Handle semun Structure In Cross-Endian Situations riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 14/24] linux-user: Make ipc syscall's third argument an abi_long riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 15/24] linux-user: Conditionally Pass Attribute Pointer to mq_open() riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 16/24] linux-user: Detect Negative Message Sizes in msgsnd System Call riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 17/24] linux-user: Handle NULL sched_param argument to sched_* riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 18/24] linux-user: Detect fault in sched_rr_get_interval riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 19/24] linux-user: Move get_ppc64_abi riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 20/24] linux-user: Minimum Sig Handler Stack Size for PPC64 ELF V2 riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 21/24] linux-user: clock_nanosleep errno Handling on PPC riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 22/24] linux-user: Support target-to-host translation of mlockall argument riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 23/24] linux-user: writev Partial Writes riku.voipio
2014-08-15 11:01 ` [Qemu-devel] [PULL 24/24] linux-user: check return value of malloc() riku.voipio
2014-08-15 17:49 ` [Qemu-devel] [PULL 00/24] Linux-user updates Peter Maydell
2014-08-18  8:46   ` Riku Voipio
2014-08-18 10:49     ` Joakim Tjernlund
2014-08-18 10:58       ` Peter Maydell
2014-08-18 12:38         ` Joakim Tjernlund
2014-08-18 12:45           ` Peter Maydell
2014-08-18 12:59             ` Joakim Tjernlund
2014-08-18 13:04               ` Peter Maydell
2014-08-18 15:15                 ` Joakim Tjernlund
2014-08-18 13:17               ` Riku Voipio
2014-08-18 15:35                 ` Joakim Tjernlund
2014-08-18 13:02             ` Laurent Vivier

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).