diff options
-rw-r--r-- | sys/sys/mount.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h index e2b8561..b6099d1 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -154,6 +154,7 @@ struct mount { #define MNT_SOFTDEP 0x00200000 /* soft updates being done */ #define MNT_NOSYMFOLLOW 0x00400000 /* do not follow symlinks */ #define MNT_JAILDEVFS 0x02000000 /* Jail friendly DEVFS behaviour */ +#define MNT_MULTILABEL 0x04000000 /* MAC support for individual objects */ #define MNT_NOATIME 0x10000000 /* disable update of file access time */ #define MNT_NOCLUSTERR 0x40000000 /* disable cluster read */ #define MNT_NOCLUSTERW 0x80000000 /* disable cluster write */ @@ -192,14 +193,15 @@ struct mount { MNT_ROOTFS | MNT_NOATIME | MNT_NOCLUSTERR| \ MNT_NOCLUSTERW | MNT_SUIDDIR | MNT_SOFTDEP | \ MNT_IGNORE | MNT_EXPUBLIC | MNT_NOSYMFOLLOW | \ - MNT_JAILDEVFS) + MNT_JAILDEVFS | MNT_MULTILABEL) /* Mask of flags that can be updated */ #define MNT_UPDATEMASK (MNT_NOSUID | MNT_NOEXEC | MNT_NODEV | \ MNT_SYNCHRONOUS | MNT_UNION | MNT_ASYNC | \ MNT_NOATIME | \ MNT_NOSYMFOLLOW | MNT_IGNORE | MNT_JAILDEVFS | \ - MNT_NOCLUSTERR | MNT_NOCLUSTERW | MNT_SUIDDIR) + MNT_NOCLUSTERR | MNT_NOCLUSTERW | MNT_SUIDDIR | \ + MNT_MULTILABEL) /* * External filesystem command modifier flags. @@ -216,7 +218,6 @@ struct mount { /* * Still available */ -#define MNT_SPARE2 0x04000000 #define MNT_SPARE3 0x08000000 /* * Internal filesystem control flags stored in mnt_kern_flag. |