From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57618) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1eqD-0005Oc-0J for qemu-devel@nongnu.org; Tue, 23 Jul 2013 11:49:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V1epx-0001Zb-D7 for qemu-devel@nongnu.org; Tue, 23 Jul 2013 11:49:32 -0400 Received: from afflict.kos.to ([92.243.29.197]:45181) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1epx-0001Yn-2G for qemu-devel@nongnu.org; Tue, 23 Jul 2013 11:49:17 -0400 Received: from kos.to (a91-156-63-85.elisa-laajakaista.fi [91.156.63.85]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by afflict.kos.to (Postfix) with ESMTPSA id 0BBF42655D for ; Tue, 23 Jul 2013 17:49:13 +0200 (CEST) From: riku.voipio@linaro.org Date: Tue, 23 Jul 2013 18:48:50 +0300 Message-Id: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 00/21] Linux-user updates List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Riku Voipio From: Riku Voipio 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 549c272b3c7c2aac69155be2e158c970828b28= 44: Merge remote-tracking branch 'pmaydell/tags/pull-arm-devs-20130722' int= o 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 except= ions (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) !=3D 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=C3=A4rber (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=3D"no" if there is no linux-user targe= t 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(-) --=20 1.8.1.2