[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 0/9] {alpha-}linux user improvements
From: |
Richard Henderson |
Subject: |
[Qemu-devel] [PATCH v3 0/9] {alpha-}linux user improvements |
Date: |
Thu, 7 Jun 2012 15:24:22 -0700 |
Changes v2-v3:
Fix fcntl translation table in O_CLOEXEC patch. The O_LARGEFILE
entry could result in an end-of-table {0,0,0,0} marker.
Handle sigprocmask and getpriority properly for alpha.
Changes v1-v2:
Dropped -stracefile patch. That clearly needs more iteration in
order to make everyone happy. I don't want the rest of this to
get caught up in that.
Two patches that fix all of the mmap problems I've been able to
find in the glibc testsuite. The iconv tests that load lots of
shared libraries are particularly good at triggering both problems.
Handle O_CLOEXEC et al properly.
Handle pipe2 properly.
r~
Richard Henderson (9):
alpha-linux-user: Fix signal handling
alpha-linux-user: Work around hosted mmap allocation problems
alpha-linux-user: Handle TARGET_SSI_IEEE_RAISE_EXCEPTION properly
linux-user: Handle O_SYNC, O_NOATIME, O_CLOEXEC, O_PATH
linux-user: Allocate the right amount of space for non-fixed file
maps
linux-user: Translate pipe2 flags; add to strace
alpha-linux-user: Fix a3 error return with v0 error bypass.
alpha-linux-user: Properly handle the non-rt sigprocmask syscall.
alpha-linux-user: Fix the getpriority syscall
linux-user/alpha/syscall_nr.h | 2 +-
linux-user/main.c | 15 ++--
linux-user/mmap.c | 30 ++++--
linux-user/strace.c | 12 ++-
linux-user/strace.list | 3 +
linux-user/syscall.c | 108 +++++++++++++++----
linux-user/syscall_defs.h | 236 +++++++++++++++++++++++------------------
target-alpha/cpu.h | 11 ++
8 files changed, 273 insertions(+), 144 deletions(-)
--
1.7.7.6
- [Qemu-devel] [PATCH v3 0/9] {alpha-}linux user improvements,
Richard Henderson <=
- [Qemu-devel] [PATCH 1/9] alpha-linux-user: Fix signal handling, Richard Henderson, 2012/06/07
- [Qemu-devel] [PATCH 2/9] alpha-linux-user: Work around hosted mmap allocation problems, Richard Henderson, 2012/06/07
- Re: [Qemu-devel] [PATCH 2/9] alpha-linux-user: Work around hosted mmap allocation problems, Andreas Färber, 2012/06/12
- Re: [Qemu-devel] [PATCH 2/9] alpha-linux-user: Work around hosted mmap allocation problems, Richard Henderson, 2012/06/12
- Re: [Qemu-devel] [PATCH 2/9] alpha-linux-user: Work around hosted mmap allocation problems, Alexander Graf, 2012/06/12
- Re: [Qemu-devel] [PATCH 2/9] alpha-linux-user: Work around hosted mmap allocation problems, Richard Henderson, 2012/06/12
- Re: [Qemu-devel] [PATCH 2/9] alpha-linux-user: Work around hosted mmap allocation problems, Alexander Graf, 2012/06/12
- Re: [Qemu-devel] [PATCH 2/9] alpha-linux-user: Work around hosted mmap allocation problems, Richard Henderson, 2012/06/12
[Qemu-devel] [PATCH 3/9] alpha-linux-user: Handle TARGET_SSI_IEEE_RAISE_EXCEPTION properly, Richard Henderson, 2012/06/07