From 325e651fb78cc970e170aa502bae6e3fa2c26db7 Mon Sep 17 00:00:00 2001 From: j_mayer Date: Wed, 21 Nov 2007 13:06:54 +0000 Subject: [PATCH] Fix PowerPC 64 stat and statfs structures definitions. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3712 c046a42c-6fe2-441c-8c8c-71466251a162 --- linux-user/syscall_defs.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index c5d15a6f94..64bc94f226 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -1088,8 +1088,13 @@ struct target_stat64 { struct target_stat { unsigned short st_dev; abi_ulong st_ino; +#if defined(TARGET_PPC64) && !defined(TARGET_ABI32) + unsigned short st_nlink; + unsigned int st_mode; +#else unsigned int st_mode; unsigned short st_nlink; +#endif unsigned int st_uid; unsigned int st_gid; unsigned short st_rdev; @@ -1104,6 +1109,9 @@ struct target_stat { abi_ulong __unused3; abi_ulong __unused4; abi_ulong __unused5; +#if defined(TARGET_PPC64) && !defined(TARGET_ABI32) + abi_ulong __unused6; +#endif }; struct target_stat64 { @@ -1555,6 +1563,34 @@ struct target_statfs64 { uint32_t f_namelen; uint32_t f_spare[6]; }; +#elif defined(TARGET_PPC64) && !defined(TARGET_ABI32) +struct target_statfs { + abi_long f_type; + abi_long f_bsize; + abi_long f_blocks; + abi_long f_bfree; + abi_long f_bavail; + abi_long f_files; + abi_long f_ffree; + target_fsid_t f_fsid; + abi_long f_namelen; + abi_long f_frsize; + abi_long f_spare[5]; +}; + +struct target_statfs64 { + abi_long f_type; + abi_long f_bsize; + abi_long f_blocks; + abi_long f_bfree; + abi_long f_bavail; + abi_long f_files; + abi_long f_ffree; + target_fsid_t f_fsid; + abi_long f_namelen; + abi_long f_frsize; + abi_long f_spare[5]; +}; #else struct target_statfs { uint32_t f_type;