Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Feb 2025 00:31:11 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 28b1a5a6cd8c - stable/14 - statfs.2: order MNT flags alphabetically
Message-ID:  <202502230031.51N0VBhF007692@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=28b1a5a6cd8cfedb4206600f07f20c0c1650aa11

commit 28b1a5a6cd8cfedb4206600f07f20c0c1650aa11
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2025-02-20 14:54:14 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2025-02-23 00:30:51 +0000

    statfs.2: order MNT flags alphabetically
    
    (cherry picked from commit 0738cd9766a570e085831f6241387baa35cd64a3)
---
 lib/libc/sys/statfs.2 | 86 +++++++++++++++++++++++++--------------------------
 1 file changed, 43 insertions(+), 43 deletions(-)

diff --git a/lib/libc/sys/statfs.2 b/lib/libc/sys/statfs.2
index c227408737ae..762183188353 100644
--- a/lib/libc/sys/statfs.2
+++ b/lib/libc/sys/statfs.2
@@ -96,64 +96,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 7 ) .
+.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 7 ) .
+.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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202502230031.51N0VBhF007692>