Re: [Qemu-devel] [patch] alpha-linux-user stat64 issue

2010-01-14 Thread Aurelien Jarno
On Tue, Dec 29, 2009 at 12:01:22AM -0500, 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

Re: [Qemu-devel] [patch] alpha-linux-user stat64 issue

2010-01-05 Thread Richard Henderson
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

[Qemu-devel] [patch] alpha-linux-user stat64 issue

2009-12-28 Thread Vince Weaver
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 f