qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 00/21] Pending linux-user patches


From: riku . voipio
Subject: [Qemu-devel] [PATCH 00/21] Pending linux-user patches
Date: Fri, 12 Jun 2009 16:50:10 +0300

From: Riku Voipio <address@hidden>

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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]