aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
diff options
context:
space:
mode:
authorCraig Rodrigues <rodrigc@FreeBSD.org>2006-05-26 12:44:12 +0000
committerCraig Rodrigues <rodrigc@FreeBSD.org>2006-05-26 12:44:12 +0000
commitee98eb825bbf1445ec02f915281bc02dff71539a (patch)
tree144caebe0249b2d6aa5af07a70f200a493d9a9a6 /sys/ufs
parent4ca073e86cbffa696b7026311706a3876b8b0172 (diff)
downloadsrc-ee98eb825bbf1445ec02f915281bc02dff71539a.tar.gz
src-ee98eb825bbf1445ec02f915281bc02dff71539a.zip
Remove "update" from ffs_opts. It has been moved to global_opts
in vfs_mount.c.
Notes
Notes: svn path=/head/; revision=158952
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ffs/ffs_vfsops.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c
index a42a217442e8..2ef75f80a61e 100644
--- a/sys/ufs/ffs/ffs_vfsops.c
+++ b/sys/ufs/ffs/ffs_vfsops.c
@@ -119,7 +119,7 @@ static struct buf_ops ffs_ops = {
static const char *ffs_opts[] = { "acls", "async", "atime", "clusterr",
"clusterw", "exec", "export", "force", "from", "multilabel",
"snapshot", "suid", "suiddir", "symfollow", "sync",
- "update", "union", NULL };
+ "union", NULL };
static int
ffs_mount(struct mount *mp, struct thread *td)
@@ -177,9 +177,6 @@ ffs_mount(struct mount *mp, struct thread *td)
if (vfs_getopt(mp->mnt_optnew, "snapshot", NULL, NULL) == 0)
mp->mnt_flag |= MNT_SNAPSHOT;
- if (vfs_getopt(mp->mnt_optnew, "update", NULL, NULL) == 0)
- mp->mnt_flag |= MNT_UPDATE;
-
/*
* If updating, check whether changing from read-only to
* read/write; if there is no device name, that's all we do.