qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/21] Linux-user updates
@ 2013-07-23 15:48 riku.voipio
  2013-07-23 15:48 ` [Qemu-devel] [PULL 01/21] configure: Flip default of target_nptl riku.voipio
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: riku.voipio @ 2013-07-23 15:48 UTC (permalink / raw)
  To: qemu-devel; +Cc: Riku Voipio

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

The linux-user patches that have been sent to the list during the
last few weeks that do not break in any of my my tests.

The following changes since commit 549c272b3c7c2aac69155be2e158c970828b2844:

  Merge remote-tracking branch 'pmaydell/tags/pull-arm-devs-20130722' into staging (2013-07-22 10:14:24 -0500)

are available in the git repository at:

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

for you to fetch changes up to a033381758841837edaf307e20edf019c5900609:

  linux-user: Handle compressed ISA encodings when processing MIPS exceptions (2013-07-23 17:31:25 +0300)

----------------------------------------------------------------
Alexander Graf (5):
  linux-user: Add i386 TLS setter
  linux-user: fix segmentation fault passing with h2g(x) != x
  linux-user: Fix epoll on ARM hosts
  linux-user: Reset copied CPUs in cpu_copy() always
  linux-user: Unlock mmap_lock when resuming guest from page_unprotect

Andreas Färber (1):
  linux-user: Avoid conditional cpu_reset()

Kwok Cheung Yeung (1):
  linux-user: Handle compressed ISA encodings when processing MIPS
    exceptions

Peter Maydell (14):
  configure: Flip default of target_nptl
  configure: Don't say target_nptl="no" if there is no linux-user target
  configure: Enable threading on all ppc and mips linux-user targets
  configure: Enable threading for unicore32-linux-user
  linux-user: Move includes of target-specific headers to end of qemu.h
  linux-user: Enable NPTL for OpenRISC
  linux-user: Enable NPTL for SPARC targets
  linux-user: Enable NPTL for m68k
  linux-user: Add missing 'break' in i386 get_thread_area syscall
  linux-user: Clean up handling of clone() argument order
  linux-user: Enable NPTL for x86-64
  configure: Make NPTL non-optional
  linux-user: Fix target_stat and target_stat64 for OpenRISC
  linux-user: Fix pipe syscall return for SPARC

 configure                        | 34 ++-------------
 exec.c                           |  4 ++
 include/exec/cpu-all.h           |  8 +++-
 include/exec/gdbstub.h           |  2 +-
 linux-user/arm/syscall.h         |  2 +
 linux-user/cris/syscall.h        |  2 +
 linux-user/i386/syscall.h        |  2 +
 linux-user/i386/target_cpu.h     | 19 ++++++++-
 linux-user/m68k/target_cpu.h     |  6 ++-
 linux-user/main.c                | 91 +++++++++++++++++++---------------------
 linux-user/microblaze/syscall.h  |  2 +
 linux-user/mips/syscall.h        |  2 +
 linux-user/mips64/syscall.h      |  2 +
 linux-user/mmap.c                | 11 -----
 linux-user/openrisc/target_cpu.h |  9 +++-
 linux-user/ppc/syscall.h         |  2 +
 linux-user/qemu.h                | 20 ++++-----
 linux-user/s390x/syscall.h       |  2 +
 linux-user/sparc/syscall.h       |  7 ++++
 linux-user/sparc/target_cpu.h    | 16 +++++--
 linux-user/sparc64/syscall.h     |  7 ++++
 linux-user/syscall.c             | 88 +++++++++++++-------------------------
 linux-user/syscall_defs.h        | 54 ++++++++++++++++++------
 translate-all.c                  | 10 +++--
 user-exec.c                      |  4 ++
 25 files changed, 218 insertions(+), 188 deletions(-)

-- 
1.8.1.2

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

end of thread, other threads:[~2013-07-23 15:50 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-23 15:48 [Qemu-devel] [PULL 00/21] Linux-user updates riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 01/21] configure: Flip default of target_nptl riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 02/21] configure: Don't say target_nptl="no" if there is no linux-user target riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 03/21] configure: Enable threading on all ppc and mips linux-user targets riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 04/21] configure: Enable threading for unicore32-linux-user riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 05/21] linux-user: Move includes of target-specific headers to end of qemu.h riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 06/21] linux-user: Enable NPTL for OpenRISC riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 07/21] linux-user: Enable NPTL for SPARC targets riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 08/21] linux-user: Enable NPTL for m68k riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 09/21] linux-user: Add missing 'break' in i386 get_thread_area syscall riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 10/21] linux-user: Clean up handling of clone() argument order riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 11/21] linux-user: Add i386 TLS setter riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 12/21] linux-user: Enable NPTL for x86-64 riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 13/21] configure: Make NPTL non-optional riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 14/21] linux-user: Avoid conditional cpu_reset() riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 15/21] linux-user: Fix target_stat and target_stat64 for OpenRISC riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 16/21] linux-user: Fix pipe syscall return for SPARC riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 17/21] linux-user: fix segmentation fault passing with h2g(x) != x riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 18/21] linux-user: Fix epoll on ARM hosts riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 19/21] linux-user: Reset copied CPUs in cpu_copy() always riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 20/21] linux-user: Unlock mmap_lock when resuming guest from page_unprotect riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 21/21] linux-user: Handle compressed ISA encodings when processing MIPS exceptions riku.voipio

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