mirrored from git://git.sv.gnu.org/coreutils.git
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
ls: use statx instead of stat when available
statx allows ls to indicate interest in only certain inode metadata.
This is potentially a win on networked/clustered/distributed
file systems. In cases where we'd have to do a full, heavyweight stat()
call we can now do a much lighter statx() call.
As a real-world example, consider a file system like CephFS where one
client is actively writing to a file and another client does an
ls --color in the same directory. --color means that we need to fetch
the mode of the file.
Doing that with a stat() call means that we have to fetch the size and
mtime in addition to the mode. The MDS in that situation will have to
revoke caps in order to ensure that it has up-to-date values to report,
which disrupts the writer.
This has a measurable affect on performance. I ran a fio sequential
write test on one cephfs client and had a second client do "ls --color"
in a tight loop on the directory that held the file:
Baseline -- no activity on the second client:
WRITE: bw=76.7MiB/s (80.4MB/s), 76.7MiB/s-76.7MiB/s (80.4MB/s-80.4MB/s),
io=4600MiB (4824MB), run=60016-60016msec
Without this patch series, we see a noticable performance hit:
WRITE: bw=70.4MiB/s (73.9MB/s), 70.4MiB/s-70.4MiB/s (73.9MB/s-73.9MB/s),
io=4228MiB (4433MB), run=60012-60012msec
With this patch series, we gain most of that ground back:
WRITE: bw=75.9MiB/s (79.6MB/s), 75.9MiB/s-75.9MiB/s (79.6MB/s-79.6MB/s),
io=4555MiB (4776MB), run=60019-60019msec
* src/stat.c: move statx to stat struct conversion to new header...
* src/statx.h: ...here.
* src/ls.c: Add wrapper functions for stat/lstat/fstat calls,
and add variants for when we are only interested in specific info.
Add statx-enabled functions and set the request mask based on the
output format and what values are needed.
* NEWS: Mention the Improvement.- Loading branch information
Showing
5 changed files
with
199 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| /* statx -> stat conversion functions for coreutils | ||
| Copyright (C) 2019 Free Software Foundation, Inc. | ||
| This program is free software: you can redistribute it and/or modify | ||
| it under the terms of the GNU General Public License as published by | ||
| the Free Software Foundation, either version 3 of the License, or | ||
| (at your option) any later version. | ||
| This program is distributed in the hope that it will be useful, | ||
| but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| GNU General Public License for more details. | ||
| You should have received a copy of the GNU General Public License | ||
| along with this program. If not, see <https://www.gnu.org/licenses/>. */ | ||
|
|
||
| #ifndef COREUTILS_STATX_H | ||
| # define COREUTILS_STATX_H | ||
|
|
||
| # if HAVE_STATX && defined STATX_INO | ||
| /* Much of the format printing requires a struct stat or timespec */ | ||
| static inline struct timespec | ||
| statx_timestamp_to_timespec (struct statx_timestamp tsx) | ||
| { | ||
| struct timespec ts; | ||
|
|
||
| ts.tv_sec = tsx.tv_sec; | ||
| ts.tv_nsec = tsx.tv_nsec; | ||
| return ts; | ||
| } | ||
|
|
||
| static inline void | ||
| statx_to_stat (struct statx *stx, struct stat *stat) | ||
| { | ||
| stat->st_dev = makedev (stx->stx_dev_major, stx->stx_dev_minor); | ||
| stat->st_ino = stx->stx_ino; | ||
| stat->st_mode = stx->stx_mode; | ||
| stat->st_nlink = stx->stx_nlink; | ||
| stat->st_uid = stx->stx_uid; | ||
| stat->st_gid = stx->stx_gid; | ||
| stat->st_rdev = makedev (stx->stx_rdev_major, stx->stx_rdev_minor); | ||
| stat->st_size = stx->stx_size; | ||
| stat->st_blksize = stx->stx_blksize; | ||
| /* define to avoid sc_prohibit_stat_st_blocks. */ | ||
| # define SC_ST_BLOCKS st_blocks | ||
| stat->SC_ST_BLOCKS = stx->stx_blocks; | ||
| stat->st_atim = statx_timestamp_to_timespec (stx->stx_atime); | ||
| stat->st_mtim = statx_timestamp_to_timespec (stx->stx_mtime); | ||
| stat->st_ctim = statx_timestamp_to_timespec (stx->stx_ctime); | ||
| } | ||
| # endif /* HAVE_STATX && defined STATX_INO */ | ||
| #endif /* COREUTILS_STATX_H */ |