From 5525bf46398c6eea71b4e89be1564af0c4d8131b Mon Sep 17 00:00:00 2001 From: phk Date: Thu, 25 Nov 2004 09:11:27 +0000 Subject: Use system wide no-op vfs_start function. --- sys/fs/nwfs/nwfs_vfsops.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'sys/fs/nwfs') 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 */ -- cgit v1.1