diff options
| author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2009-05-29 15:00:04 +0000 |
|---|---|---|
| committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2009-05-29 15:00:04 +0000 |
| commit | 61cea482682743b865d755c95edeb0195d8be526 (patch) | |
| tree | 28429f1626dd411bb9eef0e5ee20c457a8024a79 | |
| parent | 1191932a6521ccaf6425d298632b3e92107e483f (diff) | |
Notes
| -rw-r--r-- | sys/sys/mount.h | 3 |
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 */ |
