aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1998-05-06 05:29:41 +0000
committerMike Smith <msmith@FreeBSD.org>1998-05-06 05:29:41 +0000
commit79cc756d8b01ed6a729baa0e22fa602fe34f737d (patch)
tree72591e2042fd1a48dde8a7211764ace14d4ac2ef /sys/ufs
parent8fddb21ee27a8678b04fef7168368e925b98caa3 (diff)
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>
Notes
svn path=/head/; revision=35769
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 a16fdba592ec..c112dfc552e6 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 735e531ae801..d0d663e09bef 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,