]> sourceware.org Git - glibc.git/commitdiff
Linux: getdents64 syscall number is always available on MIPS
authorFlorian Weimer <fweimer@redhat.com>
Tue, 3 Mar 2020 11:20:31 +0000 (12:20 +0100)
committerFlorian Weimer <fweimer@redhat.com>
Tue, 3 Mar 2020 11:20:31 +0000 (12:20 +0100)
Due to the built-in tables, __NR_getdents64 is always defined,
although it may not be supported at run time.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
sysdeps/unix/sysv/linux/mips/mips64/getdents64.c

index 4edf968b093ece216289f236c83a4c4eb1cf2db9..d18a5297dc57cddb84b9bbc4b889b124686ee2f3 100644 (file)
@@ -34,7 +34,6 @@ __getdents64 (int fd, void *buf, size_t nbytes)
   if (nbytes > INT_MAX)
     nbytes = INT_MAX;
 
-#ifdef __NR_getdents64
   static int getdents64_supported = true;
   if (atomic_load_relaxed (&getdents64_supported))
     {
@@ -44,7 +43,6 @@ __getdents64 (int fd, void *buf, size_t nbytes)
 
       atomic_store_relaxed (&getdents64_supported, false);
     }
-#endif
 
   /* Unfortunately getdents64 was only wire-up for MIPS n64 on Linux 3.10.
      If the syscall is not available it need to fallback to the non-LFS one.
This page took 0.038443 seconds and 5 git commands to generate.