]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
linux: Fix fstat64 on alpha and sparc64
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Tue, 2 Jan 2024 14:31:52 +0000 (11:31 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Fri, 12 Jan 2024 18:11:11 +0000 (15:11 -0300)
The 551101e8240b7514fc646d1722f8b79c90362b8f change is incorrect for
alpha and sparc, since __NR_stat is defined by both kABI.  Use
__NR_newfstat to check whether to fallback to __NR_fstat64 (similar
to what fstatat64 does).

Checked on sparc64-linux-gnu.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
sysdeps/unix/sysv/linux/fstat64.c

index f631ab22f422f82b21480d509a6a85e429d337bc..cc9f695df9c69ebad2c275ca19a76a069fb6b437 100644 (file)
@@ -30,8 +30,11 @@ __fstat64_time64 (int fd, struct __stat64_t64 *buf)
 {
 #if !FSTATAT_USE_STATX
 # if XSTAT_IS_XSTAT64
-#  ifdef __NR_fstat
-  /* 64-bit kABI, e.g. aarch64, powerpc64*, s390x, riscv64, and
+  /* The __NR_stat macro is defined for all ABIs that also define 
+     XSTAT_IS_STAT64, so to correctly identify alpha and sparc check
+     __NR_newfstatat (similar to what fstatat64 does).  */
+#  ifdef __NR_newfstatat
+  /* 64-bit kABI, e.g. aarch64, ia64, powerpc64*, s390x, riscv64, and
      x86_64.  */
   return INLINE_SYSCALL_CALL (fstat, fd, buf);
 #  elif defined __NR_fstat64