Re: [Qemu-devel] [PATCH] linux-user: correct stat structure in MIPS N32

2015-02-09 Thread James Hogan
Hi Leon, On 30/01/15 15:08, Leon Alrae wrote: > Simple "hello world" MIPS N32 userland program crashes with segfault due to > incorrectly defined stat structure in QEMU. > > Correct "target_stat" definition to match kernel's "stat64" as in MIPS N32 > there are only plain "stat" syscalls using 64-

[Qemu-devel] [PATCH] linux-user: correct stat structure in MIPS N32

2015-01-30 Thread Leon Alrae
Simple "hello world" MIPS N32 userland program crashes with segfault due to incorrectly defined stat structure in QEMU. Correct "target_stat" definition to match kernel's "stat64" as in MIPS N32 there are only plain "stat" syscalls using 64-bit structure. Reported-by: Daniel Sanders Signed-off-b