summaryrefslogtreecommitdiffstats
path: root/sys/fs/nwfs
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/nwfs
parent5366ae5ee5c5dddedcec03932efcd10a94183236 (diff)
downloadFreeBSD-src-5525bf46398c6eea71b4e89be1564af0c4d8131b.zip
FreeBSD-src-5525bf46398c6eea71b4e89be1564af0c4d8131b.tar.gz
Use system wide no-op vfs_start function.
Diffstat (limited to 'sys/fs/nwfs')
-rw-r--r--sys/fs/nwfs/nwfs_vfsops.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/sys/fs/nwfs/nwfs_vfsops.c b/sys/fs/nwfs/nwfs_vfsops.c
index 5d807ab..2baf183 100644
--- a/sys/fs/nwfs/nwfs_vfsops.c
+++ b/sys/fs/nwfs/nwfs_vfsops.c
@@ -73,7 +73,6 @@ MODULE_DEPEND(nwfs, libmchain, 1, 1, 1);
static vfs_omount_t nwfs_omount;
static vfs_quotactl_t nwfs_quotactl;
static vfs_root_t nwfs_root;
-static vfs_start_t nwfs_start;
static vfs_statfs_t nwfs_statfs;
static vfs_unmount_t nwfs_unmount;
static vfs_init_t nwfs_init;
@@ -84,7 +83,6 @@ static struct vfsops nwfs_vfsops = {
.vfs_omount = nwfs_omount,
.vfs_quotactl = nwfs_quotactl,
.vfs_root = nwfs_root,
- .vfs_start = nwfs_start,
.vfs_statfs = nwfs_statfs,
.vfs_sync = vfs_stdsync,
.vfs_uninit = nwfs_uninit,
@@ -351,20 +349,6 @@ nwfs_root(struct mount *mp, struct vnode **vpp, struct thread *td) {
}
/*
- * Vfs start routine, a no-op.
- */
-/* ARGSUSED */
-static int
-nwfs_start(mp, flags, td)
- struct mount *mp;
- int flags;
- struct thread *td;
-{
- NCPVODEBUG("flags=%04x\n",flags);
- return (0);
-}
-
-/*
* Do operations associated with quotas, not supported
*/
/* ARGSUSED */
OpenPOWER on IntegriCloud