diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-02-05 14:55:45 +0000 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-02-11 07:57:57 -0300 |
commit | 4b221ec9eebb53571b6e95dceb9d31c98b073a9f (patch) | |
tree | fed63905b0fced2692a125db2d47a5f7e017f6e5 /sysdeps/unix/sysv/linux/sparc | |
parent | 228f30ab4724d4087d5f52018873fde22efea6e2 (diff) | |
download | glibc-4b221ec9eebb53571b6e95dceb9d31c98b073a9f.zip glibc-4b221ec9eebb53571b6e95dceb9d31c98b073a9f.tar.gz glibc-4b221ec9eebb53571b6e95dceb9d31c98b073a9f.tar.bz2 |
linux: Fix STATFS_IS_STATFS64 definition
aarch64, arc, ia64, mips64, powerpc64, riscv32, riscv64, s390x, sparc64,
and x86_64 defines STATFS_IS_STATFS64 to 0, but all of them alias
statfs to statfs64 and the struct statfs has the same and layout of
struct statfs64.
The correct definition will be used on the [f]statfs[64] consolidation.
This patch does not change code generation since the symbols are
implemented using the auto-generation syscall for all the aforementioned
ABIs.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/sparc')
-rw-r--r-- | sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h b/sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h index 0f3d405..29d1890 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h @@ -50,6 +50,9 @@ struct kernel_stat64 #define STAT_IS_KERNEL_STAT 0 #define STAT64_IS_KERNEL_STAT64 0 #define XSTAT_IS_XSTAT64 1 -#define STATFS_IS_STATFS64 0 - +#ifdef __arch64__ +# define STATFS_IS_STATFS64 1 +#else +# define STATFS_IS_STATFS64 0 +#endif #endif /* _KERNEL_STAT_H */ |