mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-06 01:33:34 +00:00
Fix PowerPC 64 stat and statfs structures definitions.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3712 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
fca743f307
commit
325e651fb7
@ -1088,8 +1088,13 @@ struct target_stat64 {
|
|||||||
struct target_stat {
|
struct target_stat {
|
||||||
unsigned short st_dev;
|
unsigned short st_dev;
|
||||||
abi_ulong st_ino;
|
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 int st_mode;
|
||||||
unsigned short st_nlink;
|
unsigned short st_nlink;
|
||||||
|
#endif
|
||||||
unsigned int st_uid;
|
unsigned int st_uid;
|
||||||
unsigned int st_gid;
|
unsigned int st_gid;
|
||||||
unsigned short st_rdev;
|
unsigned short st_rdev;
|
||||||
@ -1104,6 +1109,9 @@ struct target_stat {
|
|||||||
abi_ulong __unused3;
|
abi_ulong __unused3;
|
||||||
abi_ulong __unused4;
|
abi_ulong __unused4;
|
||||||
abi_ulong __unused5;
|
abi_ulong __unused5;
|
||||||
|
#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
|
||||||
|
abi_ulong __unused6;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
struct target_stat64 {
|
struct target_stat64 {
|
||||||
@ -1555,6 +1563,34 @@ struct target_statfs64 {
|
|||||||
uint32_t f_namelen;
|
uint32_t f_namelen;
|
||||||
uint32_t f_spare[6];
|
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
|
#else
|
||||||
struct target_statfs {
|
struct target_statfs {
|
||||||
uint32_t f_type;
|
uint32_t f_type;
|
||||||
|
Loading…
Reference in New Issue
Block a user