summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/sys/mount.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h
index ca90b19cc7d2..ad7121ea0a18 100644
--- a/sys/sys/mount.h
+++ b/sys/sys/mount.h
@@ -167,6 +167,7 @@ struct mount {
int mnt_writeopcount; /* (i) write syscalls pending */
int mnt_kern_flag; /* (i) kernel only flags */
u_int mnt_flag; /* (i) flags shared with user */
+ u_int mnt_xflag; /* (i) more flags shared with user */
u_int mnt_noasync; /* (i) # noasync overrides */
struct vfsoptlist *mnt_opt; /* current mount options */
struct vfsoptlist *mnt_optnew; /* new options passed to fs */
@@ -221,7 +222,7 @@ void __mnt_vnode_markerfree(struct vnode **mvp, struct mount *mp);
#endif /* _KERNEL */
/*
- * User specifiable flags.
+ * User specifiable flags, stored in mnt_flag.
*/
#define MNT_RDONLY 0x00000001 /* read only filesystem */
#define MNT_SYNCHRONOUS 0x00000002 /* filesystem written synchronously */