summaryrefslogtreecommitdiffstats
path: root/sys/ufs
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1998-05-06 05:29:41 +0000
committermsmith <msmith@FreeBSD.org>1998-05-06 05:29:41 +0000
commitc645da3999c0063d872dc79df900019260ab94ee (patch)
treeb0a566a98cecb4b302b164374e384bef81e6c3e0 /sys/ufs
parent9fcbed6a43dfce2fa8db10c333549f75ccc532f0 (diff)
downloadFreeBSD-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/ufs')
-rw-r--r--sys/ufs/ffs/ffs_vfsops.c3
-rw-r--r--sys/ufs/mfs/mfs_vfsops.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c
index a16fdba..c112dfc 100644
--- a/sys/ufs/ffs/ffs_vfsops.c
+++ b/sys/ufs/ffs/ffs_vfsops.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ffs_vfsops.c 8.31 (Berkeley) 5/20/95
- * $Id: ffs_vfsops.c,v 1.79 1998/04/19 23:32:49 julian Exp $
+ * $Id: ffs_vfsops.c,v 1.80 1998/04/20 03:57:41 julian Exp $
*/
#include "opt_devfs.h" /* for SLICE */
@@ -84,7 +84,6 @@ static struct vfsops ufs_vfsops = {
ffs_statfs,
ffs_sync,
ffs_vget,
- vfs_vrele,
ffs_fhtovp,
ffs_vptofh,
ffs_init,
diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c
index 735e531..d0d663e 100644
--- a/sys/ufs/mfs/mfs_vfsops.c
+++ b/sys/ufs/mfs/mfs_vfsops.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)mfs_vfsops.c 8.11 (Berkeley) 6/19/95
- * $Id: mfs_vfsops.c,v 1.40 1998/02/09 06:11:08 eivind Exp $
+ * $Id: mfs_vfsops.c,v 1.41 1998/03/01 22:46:53 msmith Exp $
*/
#include "opt_mfs.h"
@@ -95,7 +95,6 @@ static struct vfsops mfs_vfsops = {
mfs_statfs,
ffs_sync,
ffs_vget,
- vfs_vrele,
ffs_fhtovp,
ffs_vptofh,
mfs_init,
OpenPOWER on IntegriCloud