* [Qemu-devel] [PULL] v2: pending linux-user patches
@ 2011-07-18 7:37 Riku Voipio
2011-07-19 13:01 ` Anthony Liguori
0 siblings, 1 reply; 2+ messages in thread
From: Riku Voipio @ 2011-07-18 7:37 UTC (permalink / raw)
To: qemu-devel; +Cc: aurelien
The following changes since commit 89b9ba661bd2d6155308f895ec075d813f0e129b:
Fix signal handling of SIG_IPI when io-thread is enabled (2011-07-16 19:43:00 +0000)
are available in the git repository at:
git://git.linaro.org/people/rikuvoipio/qemu.git linux-user-for-upstream
Cédric VINCENT (4):
arm-semi: Provide access to CLI arguments passed through the "-append" option
linux-user: Add support for KD...LED ioctls
linux-user: Add support for more VT ioctls
linux-user: Add support for even more FB ioctls
Peter Maydell (4):
linux-user: Add syscall numbers from kernel 2.6.39.2
linux-user: Implement prlimit64 syscall
linux-user/syscall.c: Enforce pselect6 sigset size restrictions
linux-user/signal.c: Rename s390 target_ucontext fields to fix ia64
Riku Voipio (2):
linux-user: correct syscall 123 on sh4
linux-user: make MIPS and ARM eabi use same argument reordering
Wesley W. Terpstra (5):
mips: sigaltstack args
mips: missing syscall returns wrong errno
mips: null pointer deref should segfault
mips: rlimit incorrectly converts values
mips: rlimit codes are not the same
arm-semi.c | 113 ++++++++++++++++-----------
linux-user/alpha/syscall_nr.h | 23 +++++-
linux-user/arm/syscall_nr.h | 13 +++
linux-user/cris/syscall_nr.h | 2 +
linux-user/i386/syscall_nr.h | 12 +++
linux-user/ioctls.h | 13 +++
linux-user/m68k/syscall_nr.h | 16 ++++
linux-user/main.c | 33 +++++++-
linux-user/microblaze/syscall_nr.h | 14 +++-
linux-user/mips/syscall_nr.h | 13 +++
linux-user/mips64/syscall_nr.h | 13 +++
linux-user/mipsn32/syscall_nr.h | 14 +++
linux-user/ppc/syscall_nr.h | 30 +++++++
linux-user/s390x/syscall_nr.h | 13 +++-
linux-user/sh4/syscall_nr.h | 34 ++++++++-
linux-user/signal.c | 30 ++++----
linux-user/sparc/syscall_nr.h | 12 +++
linux-user/sparc64/syscall_nr.h | 12 +++
linux-user/syscall.c | 153 +++++++++++++++++++++++++++++-------
linux-user/syscall_defs.h | 51 ++++++++++++
linux-user/syscall_types.h | 20 +++++
linux-user/x86_64/syscall_nr.h | 12 +++
22 files changed, 549 insertions(+), 97 deletions(-)
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PULL] v2: pending linux-user patches
2011-07-18 7:37 [Qemu-devel] [PULL] v2: pending linux-user patches Riku Voipio
@ 2011-07-19 13:01 ` Anthony Liguori
0 siblings, 0 replies; 2+ messages in thread
From: Anthony Liguori @ 2011-07-19 13:01 UTC (permalink / raw)
To: Riku Voipio; +Cc: qemu-devel, aurelien
On 07/18/2011 02:37 AM, Riku Voipio wrote:
> The following changes since commit 89b9ba661bd2d6155308f895ec075d813f0e129b:
>
> Fix signal handling of SIG_IPI when io-thread is enabled (2011-07-16 19:43:00 +0000)
Pulled. Thanks.
Regards,
Anthony Liguori
>
> are available in the git repository at:
> git://git.linaro.org/people/rikuvoipio/qemu.git linux-user-for-upstream
>
> Cédric VINCENT (4):
> arm-semi: Provide access to CLI arguments passed through the "-append" option
> linux-user: Add support for KD...LED ioctls
> linux-user: Add support for more VT ioctls
> linux-user: Add support for even more FB ioctls
>
> Peter Maydell (4):
> linux-user: Add syscall numbers from kernel 2.6.39.2
> linux-user: Implement prlimit64 syscall
> linux-user/syscall.c: Enforce pselect6 sigset size restrictions
> linux-user/signal.c: Rename s390 target_ucontext fields to fix ia64
>
> Riku Voipio (2):
> linux-user: correct syscall 123 on sh4
> linux-user: make MIPS and ARM eabi use same argument reordering
>
> Wesley W. Terpstra (5):
> mips: sigaltstack args
> mips: missing syscall returns wrong errno
> mips: null pointer deref should segfault
> mips: rlimit incorrectly converts values
> mips: rlimit codes are not the same
>
> arm-semi.c | 113 ++++++++++++++++-----------
> linux-user/alpha/syscall_nr.h | 23 +++++-
> linux-user/arm/syscall_nr.h | 13 +++
> linux-user/cris/syscall_nr.h | 2 +
> linux-user/i386/syscall_nr.h | 12 +++
> linux-user/ioctls.h | 13 +++
> linux-user/m68k/syscall_nr.h | 16 ++++
> linux-user/main.c | 33 +++++++-
> linux-user/microblaze/syscall_nr.h | 14 +++-
> linux-user/mips/syscall_nr.h | 13 +++
> linux-user/mips64/syscall_nr.h | 13 +++
> linux-user/mipsn32/syscall_nr.h | 14 +++
> linux-user/ppc/syscall_nr.h | 30 +++++++
> linux-user/s390x/syscall_nr.h | 13 +++-
> linux-user/sh4/syscall_nr.h | 34 ++++++++-
> linux-user/signal.c | 30 ++++----
> linux-user/sparc/syscall_nr.h | 12 +++
> linux-user/sparc64/syscall_nr.h | 12 +++
> linux-user/syscall.c | 153 +++++++++++++++++++++++++++++-------
> linux-user/syscall_defs.h | 51 ++++++++++++
> linux-user/syscall_types.h | 20 +++++
> linux-user/x86_64/syscall_nr.h | 12 +++
> 22 files changed, 549 insertions(+), 97 deletions(-)
>
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-07-19 13:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-18 7:37 [Qemu-devel] [PULL] v2: pending linux-user patches Riku Voipio
2011-07-19 13:01 ` Anthony Liguori
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).