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

Kip Macy kmacy at FreeBSD.org
Wed May 20 22:24:32 UTC 2009


Author: kmacy
Date: Wed May 20 22:24:31 2009
New Revision: 192488
URL: http://svn.freebsd.org/changeset/base/192488

Log:
  make vfsopt globally visible for ZFS

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

Modified: stable/7/sys/kern/vfs_mount.c
==============================================================================
--- stable/7/sys/kern/vfs_mount.c	Wed May 20 22:19:48 2009	(r192487)
+++ stable/7/sys/kern/vfs_mount.c	Wed May 20 22:24:31 2009	(r192488)
@@ -100,14 +100,6 @@ struct mntlist mountlist = TAILQ_HEAD_IN
 struct mtx mountlist_mtx;
 MTX_SYSINIT(mountlist, &mountlist_mtx, "mountlist", MTX_DEF);
 
-TAILQ_HEAD(vfsoptlist, vfsopt);
-struct vfsopt {
-	TAILQ_ENTRY(vfsopt) link;
-	char	*name;
-	void	*value;
-	int	len;
-};
-
 /*
  * The vnode of the system's root (/ in the filesystem, without chroot
  * active.)


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