Re: [Qemu-devel] [PATCH v2] linux-user: Fix stat64 syscall for SPARC64

2013-11-05 Thread Stefan Weil
Am 31.10.2013 05:33, schrieb Erik de Castro Lopo: > Stefan Weil wrote: > >> Some targets use a stat64 structure for the stat64 syscall while others >> use a stat structure. SPARC64 used the wrong kind. >> >> Instead of extending the conditional compilation in syscall.c, now a >> macro TARGET_HAS_ST

Re: [Qemu-devel] [PATCH v2] linux-user: Fix stat64 syscall for SPARC64

2013-10-30 Thread Erik de Castro Lopo
Stefan Weil wrote: > Some targets use a stat64 structure for the stat64 syscall while others > use a stat structure. SPARC64 used the wrong kind. > > Instead of extending the conditional compilation in syscall.c, now a > macro TARGET_HAS_STRUCT_STAT64 is defined whenever a target has a > target_s

[Qemu-devel] [PATCH v2] linux-user: Fix stat64 syscall for SPARC64

2013-10-30 Thread Stefan Weil
Some targets use a stat64 structure for the stat64 syscall while others use a stat structure. SPARC64 used the wrong kind. Instead of extending the conditional compilation in syscall.c, now a macro TARGET_HAS_STRUCT_STAT64 is defined whenever a target has a target_stat64. Signed-off-by: Stefan We