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
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to