summaryrefslogtreecommitdiffstats
path: root/sys/fs/umapfs
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/fs/umapfs
parent5366ae5ee5c5dddedcec03932efcd10a94183236 (diff)
downloadFreeBSD-src-5525bf46398c6eea71b4e89be1564af0c4d8131b.zip
FreeBSD-src-5525bf46398c6eea71b4e89be1564af0c4d8131b.tar.gz
Use system wide no-op vfs_start function.
Diffstat (limited to 'sys/fs/umapfs')
-rw-r--r--sys/fs/umapfs/umap_vfsops.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/sys/fs/umapfs/umap_vfsops.c b/sys/fs/umapfs/umap_vfsops.c
index 1417429..2f9f253 100644
--- a/sys/fs/umapfs/umap_vfsops.c
+++ b/sys/fs/umapfs/umap_vfsops.c
@@ -54,7 +54,6 @@
static MALLOC_DEFINE(M_UMAPFSMNT, "UMAP mount", "UMAP mount structure");
static vfs_omount_t umapfs_omount;
-static vfs_start_t umapfs_start;
static vfs_root_t umapfs_root;
static vfs_quotactl_t umapfs_quotactl;
static vfs_statfs_t umapfs_statfs;
@@ -234,22 +233,6 @@ umapfs_omount(mp, path, data, ndp, td)
}
/*
- * VFS start. Nothing needed here - the start routine
- * on the underlying filesystem will have been called
- * when that filesystem was mounted.
- */
-static int
-umapfs_start(mp, flags, td)
- struct mount *mp;
- int flags;
- struct thread *td;
-{
-
- return (0);
- /* return (VFS_START(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, flags, td)); */
-}
-
-/*
* Free reference to umap layer
*/
static int
@@ -433,7 +416,6 @@ static struct vfsops umap_vfsops = {
.vfs_omount = umapfs_omount,
.vfs_quotactl = umapfs_quotactl,
.vfs_root = umapfs_root,
- .vfs_start = umapfs_start,
.vfs_statfs = umapfs_statfs,
.vfs_unmount = umapfs_unmount,
.vfs_vget = umapfs_vget,
OpenPOWER on IntegriCloud