summaryrefslogtreecommitdiffstats
path: root/sys/ufs/ffs
diff options
context:
space:
mode:
authorrodrigc <rodrigc@FreeBSD.org>2006-05-26 12:44:12 +0000
committerrodrigc <rodrigc@FreeBSD.org>2006-05-26 12:44:12 +0000
commit022e01f46be1808c6c57d5d6b957909a557873a9 (patch)
tree144caebe0249b2d6aa5af07a70f200a493d9a9a6 /sys/ufs/ffs
parente803af59ba8c8c3a5062a483fd521dfad13a254e (diff)
downloadFreeBSD-src-022e01f46be1808c6c57d5d6b957909a557873a9.zip
FreeBSD-src-022e01f46be1808c6c57d5d6b957909a557873a9.tar.gz
Remove "update" from ffs_opts. It has been moved to global_opts
in vfs_mount.c.
Diffstat (limited to 'sys/ufs/ffs')
-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 a42a217..2ef75f8 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.
OpenPOWER on IntegriCloud