From: Richard Henderson <rth@twiddle.net>
To: Vince Weaver <vince@csl.cornell.edu>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [patch] alpha-linux-user stat64 issue
Date: Mon, 04 Jan 2010 12:11:51 -0800 [thread overview]
Message-ID: <4B424B87.1080508@twiddle.net> (raw)
In-Reply-To: <20091228235833.H44497@stanley.csl.cornell.edu>
On 12/28/2009 09:01 PM, Vince Weaver wrote:
> Hello
>
> The stat64/fstat64 syscalls are broken for alpha linux-user.
>
> This is because Alpha, even though it is native 64-bits, has a stat64
> syscall that is different than regular stat. This means that the
> "TARGET_LONG_BITS==64" check in syscall.c isn't enough. Below is
> a patch that fixes things for me, although it might not be the cleanest
> fix.
>
> This issue keeps sixtrack and fma3d spec2k benchmarks from running.
>
> Vince
>
> Signed-off-by: Vince Weaver<vince@csl.cornell.edu>
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 1acf1f5..f2dd39e 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -4004,7 +4004,7 @@ static inline abi_long host_to_target_stat64(void *cpu_env,
> } else
> #endif
> {
> -#if TARGET_LONG_BITS == 64
> +#if (TARGET_LONG_BITS == 64)&& (!defined(TARGET_ALPHA))
> struct target_stat *target_st;
> #else
> struct target_stat64 *target_st;
>
>
Acked-by: Richard Henderson <rth@twiddle.net>
r~
next parent reply other threads:[~2010-01-05 19:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20091228235833.H44497@stanley.csl.cornell.edu>
2010-01-04 20:11 ` Richard Henderson [this message]
2010-01-14 15:00 ` [Qemu-devel] [patch] alpha-linux-user stat64 issue Aurelien Jarno
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=4B424B87.1080508@twiddle.net \
--to=rth@twiddle.net \
--cc=qemu-devel@nongnu.org \
--cc=vince@csl.cornell.edu \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.