From: Samuel Seay <lightningth@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH] Change to correct PowerPC on a 64bit host
Date: Tue, 1 Jan 2013 23:58:45 -0500 [thread overview]
Message-ID: <CADwyeC-DmT+ymSZ8UwTkui1r_ighLVcjnLTDY78uGNbicDsHcA@mail.gmail.com> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 154 bytes --]
Attached is a patch for fixing bug #1052857. My local tests show it working
properly on 32 and 64bit.
Signed-off-by: Samuel Seay <lightningth@gmail.com>
[-- Attachment #1.2: Type: text/html, Size: 213 bytes --]
[-- Attachment #2: 0001-Change-to-correct-PowerPC-on-64bit-host.patch --]
[-- Type: application/octet-stream, Size: 928 bytes --]
---
linux-user/signal.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/linux-user/signal.c b/linux-user/signal.c
index 95e2ffa..3835262 100644
--- a/linux-user/signal.c
+++ b/linux-user/signal.c
@@ -4584,7 +4584,7 @@ static void setup_frame(int sig, struct target_sigaction *ka,
signal = current_exec_domain_sig(sig);
- err |= __put_user(h2g(ka->_sa_handler), &sc->handler);
+ err |= __put_user(ka->_sa_handler, &sc->handler);
err |= __put_user(set->sig[0], &sc->oldmask);
#if defined(TARGET_PPC64)
err |= __put_user(set->sig[0] >> 32, &sc->_unused[3]);
@@ -4606,8 +4606,6 @@ static void setup_frame(int sig, struct target_sigaction *ka,
/* Create a stack frame for the caller of the handler. */
newsp = frame_addr - SIGNAL_FRAMESIZE;
- err |= __put_user(env->gpr[1], (target_ulong *)(uintptr_t) newsp);
-
if (err)
goto sigsegv;
--
1.7.9.5
next reply other threads:[~2013-01-02 4:58 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-02 4:58 Samuel Seay [this message]
2013-01-02 11:44 ` [Qemu-devel] [PATCH] Change to correct PowerPC on a 64bit host Andreas Färber
2013-01-02 12:00 ` Peter Maydell
2013-01-02 13:01 ` Samuel Seay
2013-01-02 14:02 ` Peter Maydell
2013-01-02 14:34 ` Samuel Seay
2013-01-02 14:47 ` [Qemu-devel] [Qemu-ppc] " Alexander Graf
2013-01-02 14:53 ` [Qemu-devel] " Peter Maydell
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=CADwyeC-DmT+ymSZ8UwTkui1r_ighLVcjnLTDY78uGNbicDsHcA@mail.gmail.com \
--to=lightningth@gmail.com \
--cc=qemu-devel@nongnu.org \
/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).