summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorrodrigc <rodrigc@FreeBSD.org>2005-11-29 00:28:17 +0000
committerrodrigc <rodrigc@FreeBSD.org>2005-11-29 00:28:17 +0000
commita5e716d31faa58b696a870d13f5e62af2a198257 (patch)
tree7a410e336c43f675291a4776eaacd0a96ccf88b1 /sys
parent1de2727068c3d74bb7342410ff133fc9e1de6680 (diff)
downloadFreeBSD-src-a5e716d31faa58b696a870d13f5e62af2a198257.zip
FreeBSD-src-a5e716d31faa58b696a870d13f5e62af2a198257.tar.gz
Remove MNT_NODEV mount option. In RELENG_6, MNT_NODEV was a no-op.
The presence of MNT_NODEV was confusing the am-utils autoconf scripts. PR: conf/79715
Diffstat (limited to 'sys')
-rw-r--r--sys/compat/linprocfs/linprocfs.c1
-rw-r--r--sys/sys/mount.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/sys/compat/linprocfs/linprocfs.c b/sys/compat/linprocfs/linprocfs.c
index bdb5108..8854233 100644
--- a/sys/compat/linprocfs/linprocfs.c
+++ b/sys/compat/linprocfs/linprocfs.c
@@ -395,7 +395,6 @@ linprocfs_domtab(PFS_FILL_ARGS)
ADD_OPTION(MNT_SYNCHRONOUS, "sync");
ADD_OPTION(MNT_NOEXEC, "noexec");
ADD_OPTION(MNT_NOSUID, "nosuid");
- ADD_OPTION(MNT_NODEV, "nodev");
ADD_OPTION(MNT_UNION, "union");
ADD_OPTION(MNT_ASYNC, "async");
ADD_OPTION(MNT_SUIDDIR, "suiddir");
diff --git a/sys/sys/mount.h b/sys/sys/mount.h
index 300285d..8e410b3 100644
--- a/sys/sys/mount.h
+++ b/sys/sys/mount.h
@@ -182,7 +182,6 @@ struct vnode *__mnt_vnode_next(struct vnode **nvp, struct mount *mp);
#define MNT_SYNCHRONOUS 0x00000002 /* filesystem written synchronously */
#define MNT_NOEXEC 0x00000004 /* can't exec from filesystem */
#define MNT_NOSUID 0x00000008 /* don't honor setuid bits on fs */
-#define MNT_NODEV 0 /* Deprecated option */
#define MNT_UNION 0x00000020 /* union with underlying filesystem */
#define MNT_ASYNC 0x00000040 /* filesystem written asynchronously */
#define MNT_SUIDDIR 0x00100000 /* special handling of SUID on dirs */
OpenPOWER on IntegriCloud