diff options
author | phk <phk@FreeBSD.org> | 2004-11-25 09:11:27 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-11-25 09:11:27 +0000 |
commit | 5525bf46398c6eea71b4e89be1564af0c4d8131b (patch) | |
tree | fae62617c82147076e9ec34ec7d51a8e64fbf8c5 /sys/fs/smbfs | |
parent | 5366ae5ee5c5dddedcec03932efcd10a94183236 (diff) | |
download | FreeBSD-src-5525bf46398c6eea71b4e89be1564af0c4d8131b.zip FreeBSD-src-5525bf46398c6eea71b4e89be1564af0c4d8131b.tar.gz |
Use system wide no-op vfs_start function.
Diffstat (limited to 'sys/fs/smbfs')
-rw-r--r-- | sys/fs/smbfs/smbfs_vfsops.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sys/fs/smbfs/smbfs_vfsops.c b/sys/fs/smbfs/smbfs_vfsops.c index e841f91..48e4820 100644 --- a/sys/fs/smbfs/smbfs_vfsops.c +++ b/sys/fs/smbfs/smbfs_vfsops.c @@ -79,7 +79,6 @@ static MALLOC_DEFINE(M_SMBFSHASH, "SMBFS hash", "SMBFS hash table"); static vfs_init_t smbfs_init; static vfs_uninit_t smbfs_uninit; static vfs_omount_t smbfs_omount; -static vfs_start_t smbfs_start; static vfs_root_t smbfs_root; static vfs_quotactl_t smbfs_quotactl; static vfs_statfs_t smbfs_statfs; @@ -90,7 +89,6 @@ static struct vfsops smbfs_vfsops = { .vfs_omount = smbfs_omount, .vfs_quotactl = smbfs_quotactl, .vfs_root = smbfs_root, - .vfs_start = smbfs_start, .vfs_statfs = smbfs_statfs, .vfs_sync = vfs_stdsync, .vfs_uninit = smbfs_uninit, @@ -294,20 +292,6 @@ smbfs_root(struct mount *mp, struct vnode **vpp, struct thread *td) } /* - * Vfs start routine, a no-op. - */ -/* ARGSUSED */ -static int -smbfs_start(mp, flags, td) - struct mount *mp; - int flags; - struct thread *td; -{ - SMBVDEBUG("flags=%04x\n", flags); - return 0; -} - -/* * Do operations associated with quotas, not supported */ /* ARGSUSED */ |