Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linux-user: Use abi_llong not long long in syscall_defs.h
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed Jul 15, 2023
1 parent 6c97772 commit 55a1bcf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions linux-user/syscall_defs.h
Expand Up @@ -1370,7 +1370,7 @@ struct target_stat64 {
unsigned short st_rdev;
unsigned char __pad3[10];

long long st_size;
abi_llong st_size;
abi_ulong st_blksize;

abi_ulong st_blocks; /* Number 512-byte blocks allocated. */
Expand Down Expand Up @@ -1403,7 +1403,7 @@ struct target_eabi_stat64 {
abi_ullong st_rdev;
abi_uint __pad2[2];

long long st_size;
abi_llong st_size;
abi_ulong st_blksize;
abi_uint __pad3;
abi_ullong st_blocks;
Expand Down Expand Up @@ -1576,10 +1576,10 @@ struct QEMU_PACKED target_stat64 {
abi_uint st_gid;
abi_ullong st_rdev;
abi_ullong __pad0;
long long st_size;
abi_llong st_size;
int st_blksize;
abi_uint __pad1;
long long st_blocks; /* Number 512-byte blocks allocated. */
abi_llong st_blocks; /* Number 512-byte blocks allocated. */
int target_st_atime;
abi_uint target_st_atime_nsec;
int target_st_mtime;
Expand Down Expand Up @@ -1689,7 +1689,7 @@ struct target_stat64 {
abi_ullong st_rdev;
unsigned char __pad3[2];

long long st_size;
abi_llong st_size;
abi_ulong st_blksize;

abi_ulong __pad4; /* future possible st_blocks high bits */
Expand Down Expand Up @@ -1933,7 +1933,7 @@ struct QEMU_PACKED target_stat64 {
abi_ullong st_rdev;
unsigned char __pad3[4];

long long st_size;
abi_llong st_size;
abi_ulong st_blksize;

abi_ullong st_blocks; /* Number 512-byte blocks allocated. */
Expand Down

0 comments on commit 55a1bcf

Please sign in to comment.