From: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
To: Riku@afflict.kos.to, Voipio@afflict.kos.to
Cc: Riku Voipio <riku.voipio@nokia.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 00/16] linux-user updates
Date: Sat, 4 Dec 2010 04:40:31 +0100 [thread overview]
Message-ID: <20101204034031.GA24240@laped.lan> (raw)
In-Reply-To: <cover.1291382447.git.riku.voipio@nokia.com>
On Fri, Dec 03, 2010 at 03:36:27PM +0200, Riku@afflict.kos.to wrote:
> From: Riku Voipio <riku.voipio@nokia.com>
>
> Hi,
>
> Collection of recent linux-user patches that have been
> tested to be good. Patches have been sent to the list before,
> lets have a couple of days for comments and I'll request a pull
> from.
Applied, thanks.
>
> The following changes since commit 6a8657528d94fa1be78d1be0821a01a251fa2de9:
> Anthony Liguori (1):
> Fix build
>
> are available in the git repository at:
>
> git://gitorious.org/qemu-maemo/qemu.git linux-user-for-upstream
>
> Jamie Lentin (1):
> linux-user: Translate getsockopt level option
>
> Martin Mohring (1):
> linux-user: fix mips and ppc to use UID16
>
> Nathan Froyd (1):
> linux-user: fix memory leaks with NPTL emulation
>
> Peter Maydell (10):
> target-arm: remove unused functions cpu_lock(), cpu_unlock()
> linux-user: remove unnecessary local from __get_user(), __put_user()
> ARM: enable XScale/iWMMXT in linux-user mode
> target-sparc: remove unused functions cpu_lock(), cpu_unlock()
> ARM: linux-user: Correct size of padding in target_ucontext_v2
> ARM: Expose vfp_get_fpscr() and vfp_set_fpscr() to C code
> ARM: linux-user: Expose VFP registers to signal handlers
> ARM: linux-user: Restore VFP state from ucontext on sigreturn
> ARM: linux-user: Expose iWMMXT registers to signal handlers
> ARM: linux-user: Restore iWMMXT state from ucontext on sigreturn
>
> Riku Voipio (2):
> linux-user: fix compiler error on nptl
> update binfmt conf
>
> amateur (1):
> linux-user: mmap_reserve() not controlled by RESERVED_VA
>
> linux-user/main.c | 4 +-
> linux-user/mips/syscall_nr.h | 38 +++++-----
> linux-user/mmap.c | 4 +-
> linux-user/ppc/syscall_nr.h | 30 ++++----
> linux-user/qemu.h | 8 +--
> linux-user/signal.c | 156 +++++++++++++++++++++++++++++++++++++++++-
> linux-user/syscall.c | 85 +++++++++++++++++++----
> linux-user/syscall_defs.h | 2 +-
> qemu-binfmt-conf.sh | 8 ++-
> target-arm/cpu.h | 6 +-
> target-arm/helper.c | 16 ++++
> target-arm/op_helper.c | 14 ----
> target-sparc/cpu.h | 2 -
> target-sparc/helper.c | 14 ----
> 14 files changed, 292 insertions(+), 95 deletions(-)
>
>
prev parent reply other threads:[~2010-12-04 3:40 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-03 13:36 [Qemu-devel] [PATCH 00/16] linux-user updates Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 01/16] [PATCH] target-arm: remove unused functions cpu_lock(), cpu_unlock() Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 02/16] linux-user: mmap_reserve() not controlled by RESERVED_VA Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 03/16] linux-user: fix memory leaks with NPTL emulation Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 04/16] linux-user: remove unnecessary local from __get_user(), __put_user() Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 05/16] linux-user: Translate getsockopt level option Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 06/16] ARM: enable XScale/iWMMXT in linux-user mode Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 07/16] target-sparc: remove unused functions cpu_lock(), cpu_unlock() Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 08/16] ARM: linux-user: Correct size of padding in target_ucontext_v2 Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 09/16] ARM: Expose vfp_get_fpscr() and vfp_set_fpscr() to C code Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 10/16] ARM: linux-user: Expose VFP registers to signal handlers Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 11/16] ARM: linux-user: Restore VFP state from ucontext on sigreturn Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 12/16] ARM: linux-user: Expose iWMMXT registers to signal handlers Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 13/16] ARM: linux-user: Restore iWMMXT state from ucontext on sigreturn Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 14/16] linux-user: fix compiler error on nptl Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 15/16] update binfmt conf Riku, Voipio
2010-12-03 13:36 ` [Qemu-devel] [PATCH 16/16] linux-user: fix mips and ppc to use UID16 Riku, Voipio
2010-12-03 13:57 ` [Qemu-devel] [PATCH 00/16] linux-user updates Peter Maydell
2010-12-04 16:09 ` riku.voipio
2010-12-04 3:40 ` Edgar E. Iglesias [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20101204034031.GA24240@laped.lan \
--to=edgar.iglesias@gmail.com \
--cc=Riku@afflict.kos.to \
--cc=Voipio@afflict.kos.to \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@nokia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).