svn commit: r192489 - stable/7/sys/kern

Kip Macy kmacy at FreeBSD.org
Wed May 20 22:26:04 UTC 2009


Author: kmacy
Date: Wed May 20 22:26:03 2009
New Revision: 192489
URL: http://svn.freebsd.org/changeset/base/192489

Log:
  make vdestroy globally visible for ZFS

Modified:
  stable/7/sys/kern/vfs_subr.c

Modified: stable/7/sys/kern/vfs_subr.c
==============================================================================
--- stable/7/sys/kern/vfs_subr.c	Wed May 20 22:24:31 2009	(r192488)
+++ stable/7/sys/kern/vfs_subr.c	Wed May 20 22:26:03 2009	(r192489)
@@ -104,7 +104,6 @@ static void	v_decr_useonly(struct vnode 
 static void	v_upgrade_usecount(struct vnode *);
 static void	vfree(struct vnode *);
 static void	vnlru_free(int);
-static void	vdestroy(struct vnode *);
 static void	vgonel(struct vnode *);
 static void	vfs_knllock(void *arg);
 static void	vfs_knlunlock(void *arg);
@@ -777,7 +776,7 @@ SYSINIT(vnlru, SI_SUB_KTHREAD_UPDATE, SI
  * Routines having to do with the management of the vnode table.
  */
 
-static void
+void
 vdestroy(struct vnode *vp)
 {
 	struct bufobj *bo;


More information about the svn-src-stable-7 mailing list