All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/21] Pending linux-user patches
@ 2009-06-12 13:50 riku.voipio
  2009-06-12 13:50 ` [Qemu-devel] [PATCH 01/21] export mmap_find_vma for shmat riku.voipio
                   ` (21 more replies)
  0 siblings, 22 replies; 40+ messages in thread
From: riku.voipio @ 2009-06-12 13:50 UTC (permalink / raw)
  To: qemu-devel

From: Riku Voipio <riku.voipio@iki.fi>

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

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

end of thread, other threads:[~2009-06-17  2:31 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-12 13:50 [Qemu-devel] [PATCH 00/21] Pending linux-user patches riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 01/21] export mmap_find_vma for shmat riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 02/21] Implement shm* syscalls and fix 64/32bit errors riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 03/21] linux-user: implemented ELF coredump support for ARM target riku.voipio
2009-06-14 15:16   ` Blue Swirl
2009-06-12 13:50 ` [Qemu-devel] [PATCH 04/21] linux-user: added x86 and x86_64 support for ELF coredump riku.voipio
2009-06-14 15:21   ` Blue Swirl
2009-06-12 13:50 ` [Qemu-devel] [PATCH 05/21] linux-user: strace now handles guest strings correctly [v2] riku.voipio
2009-06-14 15:17   ` Blue Swirl
2009-06-12 13:50 ` [Qemu-devel] [PATCH 06/21] Revived GUEST_BASE support for usermode emulation targets [v5] riku.voipio
2009-06-14 15:28   ` Blue Swirl
2009-06-12 13:50 ` [Qemu-devel] [PATCH 07/21] linux-user: fix utimensat riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 08/21] Fix struct termios host - target translation riku.voipio
2009-06-14 15:22   ` Blue Swirl
2009-06-15 15:36     ` Riku Voipio
2009-06-16  8:28       ` Arnaud Patard
2009-06-16  9:34         ` Riku Voipio
2009-06-16 10:01           ` Arnaud Patard
2009-06-12 13:50 ` [Qemu-devel] [PATCH 09/21] Return EOPNOTSUPP instead of ENOSYS for *xattr* syscalls riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 10/21] linux-user: Added IP_ADD_MEMBERSHIP/IP_DROP_MEMBERSHIP flags to setsockopt riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 11/21] linux-user: Added IP_(UN)BLOCK_SOURCE/IP_(ADD|DROP)_SOURCE_MEMBERSHIP " riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 12/21] linux-user: include linux/fs.h riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 13/21] linux-user: support private futexes riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 14/21] add futex wake op riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 15/21] linux-user: update syscall list riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 16/21] linux-user: implement pipe2 [v3] riku.voipio
2009-06-16 21:44   ` Stuart Brady
2009-06-17  2:31     ` Jamie Lokier
2009-06-12 13:50 ` [Qemu-devel] [PATCH 17/21] linux-user: add tee, splice and vmsplice riku.voipio
2009-06-14 15:25   ` Blue Swirl
2009-06-12 13:50 ` [Qemu-devel] [PATCH 18/21] RFC: fix fcntl support in linux-user - new try riku.voipio
2009-06-14 15:15   ` Blue Swirl
2009-06-12 13:50 ` [Qemu-devel] [PATCH 19/21] linux-user: initialize mmap_mutex properly riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 20/21] linux-user/syscall.c: define _ATFILE_SOURCE riku.voipio
2009-06-12 13:50 ` [Qemu-devel] [PATCH 21/21] linux-user: remove duplicate tswap32() from do_getsockopt() riku.voipio
2009-06-14 15:12 ` [Qemu-devel] [PATCH 00/21] Pending linux-user patches Blue Swirl
2009-06-15 15:10   ` Riku Voipio
2009-06-16 16:30     ` Martin Mohring
2009-06-16 16:45       ` Blue Swirl
2009-06-16 17:03         ` Riku Voipio

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.