From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MF79d-0003OB-NJ for qemu-devel@nongnu.org; Fri, 12 Jun 2009 09:50:49 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MF79U-0003IW-7a for qemu-devel@nongnu.org; Fri, 12 Jun 2009 09:50:40 -0400 Received: from [199.232.76.173] (port=40957 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MF79T-0003IN-RN for qemu-devel@nongnu.org; Fri, 12 Jun 2009 09:50:39 -0400 Received: from naru.obs2.net ([84.20.150.76]:37578) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MF79R-0007Vp-UX for qemu-devel@nongnu.org; Fri, 12 Jun 2009 09:50:39 -0400 Received: from kos.to (localhost.localdomain [127.0.0.1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by narury.org (Postfix) with ESMTP id 2C5703274001 for ; Fri, 12 Jun 2009 16:50:32 +0300 (EEST) From: riku.voipio@iki.fi Date: Fri, 12 Jun 2009 16:50:10 +0300 Message-Id: Subject: [Qemu-devel] [PATCH 00/21] Pending linux-user patches List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org From: Riku Voipio All the things in linux-user tree at the moment: https://git.maemo.org/projects/qemu/gitweb?p=qemu;a=shortlog;h=refs/heads/linux-user-for-upstream Since the maemo git hosting regrettably only provides https transport, you can download the git tree faster if you already have a git tree: git clone git://git.sv.gnu.org/qemu.git cd qemu git remote add maemo https://git.maemo.org/projects/qemu git fetch maemo git checkout -b linux-user maemo/linux-user-for-upstream This tree is constantly rebased against upstream git HEAD, so avoid basing your work on this branch. Arnaud Patard (2): Fix struct termios host - target translation Return EOPNOTSUPP instead of ENOSYS for *xattr* syscalls Arnaud Patard (Rtp) (1): RFC: fix fcntl support in linux-user - new try Eduardo Habkost (1): linux-user/syscall.c: define _ATFILE_SOURCE Laurent Vivier (1): linux-user: remove duplicate tswap32() from do_getsockopt() Lionel Landwerlin (2): linux-user: Added IP_ADD_MEMBERSHIP/IP_DROP_MEMBERSHIP flags to setsockopt linux-user: Added IP_(UN)BLOCK_SOURCE/IP_(ADD|DROP)_SOURCE_MEMBERSHIP flags to setsockopt Martin Mohring (2): linux-user: include linux/fs.h linux-user: support private futexes Mika Westerberg (4): linux-user: implemented ELF coredump support for ARM target linux-user: added x86 and x86_64 support for ELF coredump linux-user: strace now handles guest strings correctly [v2] Revived GUEST_BASE support for usermode emulation targets [v5] Nathan Froyd (1): linux-user: initialize mmap_mutex properly Riku Voipio (6): export mmap_find_vma for shmat Implement shm* syscalls and fix 64/32bit errors linux-user: fix utimensat add futex wake op linux-user: update syscall list linux-user: implement pipe2 [v3] vibisreenivasan (1): linux-user: add tee, splice and vmsplice configure | 75 +++ cpu-all.h | 9 +- elf.h | 19 +- exec.c | 69 ++- linux-user/arm/syscall_nr.h | 9 + linux-user/elfload.c | 1033 +++++++++++++++++++++++++++++++++++++- linux-user/i386/syscall_nr.h | 8 + linux-user/linuxload.c | 50 +- linux-user/m68k/syscall_nr.h | 8 + linux-user/main.c | 101 ++++- linux-user/mips/syscall_nr.h | 9 + linux-user/mips64/syscall_nr.h | 9 + linux-user/mipsn32/syscall_nr.h | 9 + linux-user/mmap.c | 4 +- linux-user/ppc/syscall_nr.h | 9 + linux-user/qemu.h | 17 +- linux-user/sh4/syscall_nr.h | 8 + linux-user/signal.c | 40 ++- linux-user/sparc/syscall_nr.h | 9 + linux-user/sparc64/syscall_nr.h | 9 + linux-user/strace.c | 1072 ++++++++++++++++++++++++++++++++++++++- linux-user/strace.list | 111 +++-- linux-user/syscall.c | 595 +++++++++++++++++----- linux-user/syscall_defs.h | 41 ++- linux-user/x86_64/syscall_nr.h | 9 + tcg/i386/tcg-target.c | 36 +- tcg/x86_64/tcg-target.c | 30 +- 27 files changed, 3110 insertions(+), 288 deletions(-)