From 022e01f46be1808c6c57d5d6b957909a557873a9 Mon Sep 17 00:00:00 2001 From: rodrigc Date: Fri, 26 May 2006 12:44:12 +0000 Subject: Remove "update" from ffs_opts. It has been moved to global_opts in vfs_mount.c. --- sys/ufs/ffs/ffs_vfsops.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'sys/ufs/ffs') 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. -- cgit v1.1