diff options
author | msmith <msmith@FreeBSD.org> | 1998-05-06 05:29:41 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1998-05-06 05:29:41 +0000 |
commit | c645da3999c0063d872dc79df900019260ab94ee (patch) | |
tree | b0a566a98cecb4b302b164374e384bef81e6c3e0 /sys/nfs/nfs_vfsops.c | |
parent | 9fcbed6a43dfce2fa8db10c333549f75ccc532f0 (diff) | |
download | FreeBSD-src-c645da3999c0063d872dc79df900019260ab94ee.zip FreeBSD-src-c645da3999c0063d872dc79df900019260ab94ee.tar.gz |
As described by the submitter:
Reverse the VFS_VRELE patch. Reference counting of vnodes does not need
to be done per-fs. I noticed this while fixing vfs layering violations.
Doing reference counting in generic code is also the preference cited by
John Heidemann in recent discussions with him.
The implementation of alternative vnode management per-fs is still a valid
requirement for some filesystems but will be revisited sometime later,
most likely using a different framework.
Submitted by: Michael Hancock <michaelh@cet.co.jp>
Diffstat (limited to 'sys/nfs/nfs_vfsops.c')
-rw-r--r-- | sys/nfs/nfs_vfsops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c index 3af6f40..e108dcf 100644 --- a/sys/nfs/nfs_vfsops.c +++ b/sys/nfs/nfs_vfsops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vfsops.c 8.12 (Berkeley) 5/20/95 - * $Id: nfs_vfsops.c,v 1.56 1998/03/14 03:25:18 tegge Exp $ + * $Id: nfs_vfsops.c,v 1.57 1998/03/30 09:54:23 phk Exp $ */ #include <sys/param.h> @@ -124,7 +124,6 @@ static struct vfsops nfs_vfsops = { nfs_statfs, nfs_sync, nfs_vget, - vfs_vrele, nfs_fhtovp, nfs_vptofh, nfs_init |