qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/16] linux-user updates
@ 2010-12-03 13:36 Riku, Voipio
  2010-12-03 13:36 ` [Qemu-devel] [PATCH 01/16] [PATCH] target-arm: remove unused functions cpu_lock(), cpu_unlock() Riku, Voipio
                   ` (17 more replies)
  0 siblings, 18 replies; 20+ messages in thread
From: Riku, Voipio @ 2010-12-03 13:36 UTC (permalink / raw)
  To: qemu-devel; +Cc: Riku Voipio

From: Riku Voipio <riku.voipio@nokia.com>

Hi,

Collection of recent linux-user patches that have been
tested to be good. Patches have been sent to the list before,
lets have a couple of days for comments and I'll request a pull
from.

The following changes since commit 6a8657528d94fa1be78d1be0821a01a251fa2de9:
  Anthony Liguori (1):
        Fix build

are available in the git repository at:  

  git://gitorious.org/qemu-maemo/qemu.git linux-user-for-upstream

Jamie Lentin (1):
  linux-user: Translate getsockopt level option

Martin Mohring (1):
  linux-user: fix mips and ppc to use UID16

Nathan Froyd (1):
  linux-user: fix memory leaks with NPTL emulation

Peter Maydell (10):
  target-arm: remove unused functions cpu_lock(), cpu_unlock()
  linux-user: remove unnecessary local from __get_user(), __put_user()
  ARM: enable XScale/iWMMXT in linux-user mode
  target-sparc: remove unused functions cpu_lock(), cpu_unlock()
  ARM: linux-user: Correct size of padding in target_ucontext_v2
  ARM: Expose vfp_get_fpscr() and vfp_set_fpscr() to C code
  ARM: linux-user: Expose VFP registers to signal handlers
  ARM: linux-user: Restore VFP state from ucontext on sigreturn
  ARM: linux-user: Expose iWMMXT registers to signal handlers
  ARM: linux-user: Restore iWMMXT state from ucontext on sigreturn

Riku Voipio (2):
  linux-user: fix compiler error on nptl
  update binfmt conf

amateur (1):
  linux-user: mmap_reserve() not controlled by RESERVED_VA

 linux-user/main.c            |    4 +-
 linux-user/mips/syscall_nr.h |   38 +++++-----
 linux-user/mmap.c            |    4 +-
 linux-user/ppc/syscall_nr.h  |   30 ++++----
 linux-user/qemu.h            |    8 +--
 linux-user/signal.c          |  156 +++++++++++++++++++++++++++++++++++++++++-
 linux-user/syscall.c         |   85 +++++++++++++++++++----
 linux-user/syscall_defs.h    |    2 +-
 qemu-binfmt-conf.sh          |    8 ++-
 target-arm/cpu.h             |    6 +-
 target-arm/helper.c          |   16 ++++
 target-arm/op_helper.c       |   14 ----
 target-sparc/cpu.h           |    2 -
 target-sparc/helper.c        |   14 ----
 14 files changed, 292 insertions(+), 95 deletions(-)

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

end of thread, other threads:[~2010-12-04 16:10 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-03 13:36 [Qemu-devel] [PATCH 00/16] linux-user updates Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 01/16] [PATCH] target-arm: remove unused functions cpu_lock(), cpu_unlock() Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 02/16] linux-user: mmap_reserve() not controlled by RESERVED_VA Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 03/16] linux-user: fix memory leaks with NPTL emulation Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 04/16] linux-user: remove unnecessary local from __get_user(), __put_user() Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 05/16] linux-user: Translate getsockopt level option Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 06/16] ARM: enable XScale/iWMMXT in linux-user mode Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 07/16] target-sparc: remove unused functions cpu_lock(), cpu_unlock() Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 08/16] ARM: linux-user: Correct size of padding in target_ucontext_v2 Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 09/16] ARM: Expose vfp_get_fpscr() and vfp_set_fpscr() to C code Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 10/16] ARM: linux-user: Expose VFP registers to signal handlers Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 11/16] ARM: linux-user: Restore VFP state from ucontext on sigreturn Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 12/16] ARM: linux-user: Expose iWMMXT registers to signal handlers Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 13/16] ARM: linux-user: Restore iWMMXT state from ucontext on sigreturn Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 14/16] linux-user: fix compiler error on nptl Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 15/16] update binfmt conf Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 16/16] linux-user: fix mips and ppc to use UID16 Riku, Voipio
2010-12-03 13:57 ` [Qemu-devel] [PATCH 00/16] linux-user updates Peter Maydell
2010-12-04 16:09   ` riku.voipio
2010-12-04  3:40 ` Edgar E. Iglesias

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