aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2025-02-20 14:54:14 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2025-02-20 15:03:49 +0000
commit0738cd9766a570e085831f6241387baa35cd64a3 (patch)
treeba720f8b68c290b05a636051b68abc66c4ca5aa4 /lib
parent13b92ae9655deb22c3ad89f1e90e26f2f1da9961 (diff)
statfs.2: order MNT flags alphabetically
Sponsored by: The FreeBSD Foundation MFC after: 3 days
Diffstat (limited to 'lib')
-rw-r--r--lib/libsys/statfs.286
1 files changed, 43 insertions, 43 deletions
diff --git a/lib/libsys/statfs.2 b/lib/libsys/statfs.2
index cf996e0fe552..91f9e96cc048 100644
--- a/lib/libsys/statfs.2
+++ b/lib/libsys/statfs.2
@@ -94,64 +94,64 @@ char f_mntonname[MNAMELEN]; /* directory on which mounted */
.Pp
The flags that may be returned include:
.Bl -tag -width MNT_SYNCHRONOUS
-.It Dv MNT_RDONLY
-The file system is mounted read-only;
-Even the super-user may not write on it.
-.It Dv MNT_NOEXEC
-Files may not be executed from the file system.
-.It Dv MNT_NOSUID
-Setuid and setgid bits on files are not honored when they are executed.
-.It Dv MNT_SYNCHRONOUS
-All I/O to the file system is done synchronously.
+.It Dv MNT_ACLS
+Access Control List (ACL) support enabled.
.It Dv MNT_ASYNC
No file system I/O is done synchronously.
-.It Dv MNT_SOFTDEP
-Soft updates being done (see
-.Xr ffs 4 ) .
+.It Dv MNT_DEFEXPORTED
+The file system is exported for both reading and writing to any Internet host.
.It Dv MNT_GJOURNAL
Journaling with gjournal is enabled (see
.Xr gjournal 8 ) .
-.It Dv MNT_SUIDDIR
-Special handling of SUID bit on directories.
-.It Dv MNT_UNION
-Union with underlying file system.
-.It Dv MNT_NOSYMFOLLOW
-Symbolic links are not followed.
-.It Dv MNT_NOCLUSTERR
-Read clustering is disabled.
-.It Dv MNT_NOCLUSTERW
-Write clustering is disabled.
+.It Dv MNT_EXKERB
+The file system is exported with Kerberos uid mapping.
+.It Dv MNT_EXPORTANON
+The file system maps all remote accesses to the anonymous user.
+.It Dv MNT_EXPORTED
+The file system is exported for both reading and writing.
+.It Dv MNT_EXPUBLIC
+The file system is exported publicly (WebNFS).
+.It Dv MNT_EXRDONLY
+The file system is exported read-only.
+.It Dv MNT_IGNORE
+The file system should not be listed, e.g. by
+.Xr df 1 .
+.It Dv MNT_LOCAL
+The file system resides locally.
.It Dv MNT_MULTILABEL
Mandatory Access Control (MAC) support for individual objects
(see
.Xr mac 4 ) .
-.It Dv MNT_ACLS
-Access Control List (ACL) support enabled.
-.It Dv MNT_LOCAL
-The file system resides locally.
+.It Dv MNT_NOATIME
+Updating of file access times is disabled.
+.It Dv MNT_NOCLUSTERR
+Read clustering is disabled.
+.It Dv MNT_NOCLUSTERW
+Write clustering is disabled.
+.It Dv MNT_NOEXEC
+Files may not be executed from the file system.
+.It Dv MNT_NOSUID
+Setuid and setgid bits on files are not honored when they are executed.
+.It Dv MNT_NOSYMFOLLOW
+Symbolic links are not followed.
+.It Dv MNT_SOFTDEP
+Soft updates being done (see
+.Xr ffs 4 ) .
+.It Dv MNT_SUIDDIR
+Special handling of SUID bit on directories.
+.It Dv MNT_SYNCHRONOUS
+All I/O to the file system is done synchronously.
.It Dv MNT_QUOTA
The file system has quotas enabled on it.
+.It Dv MNT_RDONLY
+The file system is mounted read-only;
+Even the super-user may not write on it.
.It Dv MNT_ROOTFS
Identifies the root file system.
-.It Dv MNT_EXRDONLY
-The file system is exported read-only.
-.It Dv MNT_NOATIME
-Updating of file access times is disabled.
+.It Dv MNT_UNION
+Union with underlying file system.
.It Dv MNT_USER
The file system has been mounted by a user.
-.It Dv MNT_IGNORE
-The file system should not be listed, e.g. by
-.Xr df 1 .
-.It Dv MNT_EXPORTED
-The file system is exported for both reading and writing.
-.It Dv MNT_DEFEXPORTED
-The file system is exported for both reading and writing to any Internet host.
-.It Dv MNT_EXPORTANON
-The file system maps all remote accesses to the anonymous user.
-.It Dv MNT_EXKERB
-The file system is exported with Kerberos uid mapping.
-.It Dv MNT_EXPUBLIC
-The file system is exported publicly (WebNFS).
.El
.Pp
Fields that are undefined for a particular file system are set to -1.