From 4b221ec9eebb53571b6e95dceb9d31c98b073a9f Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Fri, 5 Feb 2021 14:55:45 +0000 Subject: 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 --- sysdeps/unix/sysv/linux/x86_64/kernel_stat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/unix/sysv/linux/x86_64') diff --git a/sysdeps/unix/sysv/linux/x86_64/kernel_stat.h b/sysdeps/unix/sysv/linux/x86_64/kernel_stat.h index e1eac69850..ee05a15590 100644 --- a/sysdeps/unix/sysv/linux/x86_64/kernel_stat.h +++ b/sysdeps/unix/sysv/linux/x86_64/kernel_stat.h @@ -19,4 +19,4 @@ #define STAT_IS_KERNEL_STAT 1 #define STAT64_IS_KERNEL_STAT64 1 #define XSTAT_IS_XSTAT64 1 -#define STATFS_IS_STATFS64 0 +#define STATFS_IS_STATFS64 1 -- cgit 1.4.1