summaryrefslogtreecommitdiffstats
path: root/sys/ufs
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2004-11-25 09:11:27 +0000
committerphk <phk@FreeBSD.org>2004-11-25 09:11:27 +0000
commit5525bf46398c6eea71b4e89be1564af0c4d8131b (patch)
treefae62617c82147076e9ec34ec7d51a8e64fbf8c5 /sys/ufs
parent5366ae5ee5c5dddedcec03932efcd10a94183236 (diff)
downloadFreeBSD-src-5525bf46398c6eea71b4e89be1564af0c4d8131b.zip
FreeBSD-src-5525bf46398c6eea71b4e89be1564af0c4d8131b.tar.gz
Use system wide no-op vfs_start function.
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ffs/ffs_vfsops.c1
-rw-r--r--sys/ufs/ufs/ufs_extern.h1
-rw-r--r--sys/ufs/ufs/ufs_vfsops.c14
3 files changed, 0 insertions, 16 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c
index 9d7a605..fc97618 100644
--- a/sys/ufs/ffs/ffs_vfsops.c
+++ b/sys/ufs/ffs/ffs_vfsops.c
@@ -90,7 +90,6 @@ static struct vfsops ufs_vfsops = {
.vfs_omount = ffs_omount,
.vfs_quotactl = ufs_quotactl,
.vfs_root = ufs_root,
- .vfs_start = ufs_start,
.vfs_statfs = ffs_statfs,
.vfs_sync = ffs_sync,
.vfs_uninit = ffs_uninit,
diff --git a/sys/ufs/ufs/ufs_extern.h b/sys/ufs/ufs/ufs_extern.h
index 9ada834..5e124e9 100644
--- a/sys/ufs/ufs/ufs_extern.h
+++ b/sys/ufs/ufs/ufs_extern.h
@@ -86,7 +86,6 @@ int ufs_readdir(struct vop_readdir_args *);
int ufs_reclaim(struct vop_reclaim_args *);
void ffs_snapgone(struct inode *);
vfs_root_t ufs_root;
-vfs_start_t ufs_start;
int ufs_uninit(struct vfsconf *);
int ufs_vinit(struct mount *, vop_t **, struct vnode **);
diff --git a/sys/ufs/ufs/ufs_vfsops.c b/sys/ufs/ufs/ufs_vfsops.c
index 8876e51..8ba1d9d 100644
--- a/sys/ufs/ufs/ufs_vfsops.c
+++ b/sys/ufs/ufs/ufs_vfsops.c
@@ -61,20 +61,6 @@ __FBSDID("$FreeBSD$");
#endif
MALLOC_DEFINE(M_UFSMNT, "UFS mount", "UFS mount structure");
-/*
- * Make a filesystem operational.
- * Nothing to do at the moment.
- */
-/* ARGSUSED */
-int
-ufs_start(mp, flags, td)
- struct mount *mp;
- int flags;
- struct thread *td;
-{
-
- return (0);
-}
/*
* Return the root of a filesystem.
OpenPOWER on IntegriCloud