aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount/mntopts.h
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2009-12-21 19:39:10 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2009-12-21 19:39:10 +0000
commit9340fc72e6a63269b796c4e70aafbe579439b246 (patch)
tree4b32c0e46acd0bb797fce83987089212198f0f51 /sbin/mount/mntopts.h
parent18814e50694f2a6eb45204984f6d62f92fddba9a (diff)
downloadsrc-9340fc72e6a63269b796c4e70aafbe579439b246.tar.gz
src-9340fc72e6a63269b796c4e70aafbe579439b246.zip
Implement NFSv4 ACL support for UFS.
Reviewed by: rwatson
Notes
Notes: svn path=/head/; revision=200796
Diffstat (limited to 'sbin/mount/mntopts.h')
-rw-r--r--sbin/mount/mntopts.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/mount/mntopts.h b/sbin/mount/mntopts.h
index 2fcbbddbbc11..2903d553f4ef 100644
--- a/sbin/mount/mntopts.h
+++ b/sbin/mount/mntopts.h
@@ -54,6 +54,7 @@ struct mntopt {
#define MOPT_SNAPSHOT { "snapshot", 0, MNT_SNAPSHOT, 0 }
#define MOPT_MULTILABEL { "multilabel", 0, MNT_MULTILABEL, 0 }
#define MOPT_ACLS { "acls", 0, MNT_ACLS, 0 }
+#define MOPT_NFS4ACLS { "nfsv4acls", 0, MNT_NFS4ACLS, 0 }
/* Control flags. */
#define MOPT_FORCE { "force", 0, MNT_FORCE, 0 }
@@ -87,7 +88,8 @@ struct mntopt {
MOPT_NOCLUSTERR, \
MOPT_NOCLUSTERW, \
MOPT_MULTILABEL, \
- MOPT_ACLS
+ MOPT_ACLS, \
+ MOPT_NFS4ACLS
void getmntopts(const char *, const struct mntopt *, int *, int *);
void rmslashes(char *, char *);