]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
stat: don't explicitly request file size for filenames
authorAndreas Dilger <adilger@whamcloud.com>
Thu, 27 Jun 2019 08:25:55 +0000 (02:25 -0600)
committerPádraig Brady <P@draigBrady.com>
Fri, 12 Jul 2019 18:51:09 +0000 (19:51 +0100)
When calling 'stat -c %N' to print the filename, don't explicitly
request the size of the file via statx(), as it may add overhead on
some filesystems.  The size is only needed to optimize an allocation
for the relatively rare case of reading a symlink name, and the worst
effect is a somewhat-too-large temporary buffer may be allocated for
areadlink_with_size(), or internal retries if buffer is too small.

The file size will be returned by statx() on most filesystems, even
if not requested, unless the filesystem considers this to be too
expensive for that file, in which case the tradeoff is worthwhile.

* src/stat.c: Don't explicitly request STATX_SIZE for filenames.

src/stat.c

index ec0bb7de496c60e64a30196dddfb5a96500da9be..ee68f1682bc8d32187ad063e5917b47503564e49 100644 (file)
@@ -1282,7 +1282,7 @@ fmt_to_mask (char fmt)
   switch (fmt)
     {
     case 'N':
-      return STATX_MODE|STATX_SIZE;
+      return STATX_MODE;
     case 'd':
     case 'D':
       return STATX_MODE;
@@ -1354,7 +1354,7 @@ do_stat (char const *filename, char const *format, char const *format2)
   int fd = STREQ (filename, "-") ? 0 : AT_FDCWD;
   int flags = 0;
   struct stat st;
-  struct statx stx;
+  struct statx stx = { 0, };
   const char *pathname = filename;
   struct print_args pa;
   pa.st = &st;