summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/fs/statx.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/fs/statx.rs')
-rw-r--r--vendor/rustix/src/fs/statx.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/vendor/rustix/src/fs/statx.rs b/vendor/rustix/src/fs/statx.rs
index 121f9270a..32ae84ed3 100644
--- a/vendor/rustix/src/fs/statx.rs
+++ b/vendor/rustix/src/fs/statx.rs
@@ -42,8 +42,8 @@ mod compat {
use backend::fs::types::{Statx, StatxFlags};
- // Linux kernel prior to 4.11 old versions of Docker don't support `statx`. We
- // store the availability in a global to avoid unnecessary syscalls.
+ // Linux kernel prior to 4.11 old versions of Docker don't support `statx`.
+ // We store the availability in a global to avoid unnecessary syscalls.
//
// 0: Unknown
// 1: Not available
@@ -92,9 +92,9 @@ mod compat {
/// The first `statx` call failed with `PERM`.
#[cold]
fn statx_error_perm() -> io::Result<Statx> {
- // Some old versions of Docker have `statx` fail with `PERM` when it isn't
- // recognized. Check whether `statx` really is available, and if so, fail
- // with `PERM`, and if not, treat it like `NOSYS`.
+ // Some old versions of Docker have `statx` fail with `PERM` when it
+ // isn't recognized. Check whether `statx` really is available, and if
+ // so, fail with `PERM`, and if not, treat it like `NOSYS`.
if backend::fs::syscalls::is_statx_available() {
STATX_STATE.store(2, Ordering::Relaxed);
Err(io::Errno::PERM)