svn commit: r192483 - stable/7/sys/sys

Kip Macy kmacy at FreeBSD.org
Wed May 20 22:09:50 UTC 2009


Author: kmacy
Date: Wed May 20 22:09:49 2009
New Revision: 192483
URL: http://svn.freebsd.org/changeset/base/192483

Log:
  - make vfsoptlist globally visible
  - ZFS MFC dependency

Modified:
  stable/7/sys/sys/mount.h

Modified: stable/7/sys/sys/mount.h
==============================================================================
--- stable/7/sys/sys/mount.h	Wed May 20 22:01:43 2009	(r192482)
+++ stable/7/sys/sys/mount.h	Wed May 20 22:09:49 2009	(r192483)
@@ -131,8 +131,16 @@ struct ostatfs {
 
 TAILQ_HEAD(vnodelst, vnode);
 
-struct vfsoptlist;
-struct vfsopt;
+/* Mount options list */
+TAILQ_HEAD(vfsoptlist, vfsopt);
+struct vfsopt {
+	TAILQ_ENTRY(vfsopt) link;
+	char	*name;
+	void	*value;
+	int	len;
+	int	pos;
+	int	seen;
+};
 
 /*
  * Structure per mounted filesystem.  Each mounted filesystem has an


More information about the svn-src-all mailing list