[Midnightbsd-cvs] src [8356] trunk/sys/kern/vfs_subr.c: order the enumeration of the MNT_ flags to be the same as the order of their definitions
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sun Sep 18 14:34:26 EDT 2016
Revision: 8356
http://svnweb.midnightbsd.org/src/?rev=8356
Author: laffer1
Date: 2016-09-18 14:34:26 -0400 (Sun, 18 Sep 2016)
Log Message:
-----------
order the enumeration of the MNT_ flags to be the same as the order of their definitions
Modified Paths:
--------------
trunk/sys/kern/vfs_subr.c
Modified: trunk/sys/kern/vfs_subr.c
===================================================================
--- trunk/sys/kern/vfs_subr.c 2016-09-18 18:33:53 UTC (rev 8355)
+++ trunk/sys/kern/vfs_subr.c 2016-09-18 18:34:26 UTC (rev 8356)
@@ -3018,11 +3018,11 @@
MNT_FLAG(MNT_SYNCHRONOUS);
MNT_FLAG(MNT_NOEXEC);
MNT_FLAG(MNT_NOSUID);
+ MNT_FLAG(MNT_NFS4ACLS);
MNT_FLAG(MNT_UNION);
MNT_FLAG(MNT_ASYNC);
MNT_FLAG(MNT_SUIDDIR);
MNT_FLAG(MNT_SOFTDEP);
- MNT_FLAG(MNT_SUJ);
MNT_FLAG(MNT_NOSYMFOLLOW);
MNT_FLAG(MNT_GJOURNAL);
MNT_FLAG(MNT_MULTILABEL);
@@ -3030,7 +3030,7 @@
MNT_FLAG(MNT_NOATIME);
MNT_FLAG(MNT_NOCLUSTERR);
MNT_FLAG(MNT_NOCLUSTERW);
- MNT_FLAG(MNT_NFS4ACLS);
+ MNT_FLAG(MNT_SUJ);
MNT_FLAG(MNT_EXRDONLY);
MNT_FLAG(MNT_EXPORTED);
MNT_FLAG(MNT_DEFEXPORTED);
More information about the Midnightbsd-cvs
mailing list