Print this page
3742 zfs comments need cleaner, more consistent style
Submitted by:   Will Andrews <willa@spectralogic.com>
Submitted by:   Alan Somers <alans@spectralogic.com>
Reviewed by:    Matthew Ahrens <mahrens@delphix.com>
Reviewed by:    George Wilson <george.wilson@delphix.com>
Reviewed by:    Eric Schrock <eric.schrock@delphix.com>

@@ -321,12 +321,10 @@
         }
         return (B_FALSE);
 }
 
 /*
- * zfs_earlier_version
- *
  *      Return non-zero if the spa version is less than requested version.
  */
 static int
 zfs_earlier_version(const char *name, int version)
 {

@@ -341,12 +339,10 @@
         }
         return (0);
 }
 
 /*
- * zpl_earlier_version
- *
  * Return TRUE if the ZPL version is less than requested version.
  */
 static boolean_t
 zpl_earlier_version(const char *name, int version)
 {

@@ -2953,14 +2949,14 @@
 
 #define ZFS_PROP_UNDEFINED      ((uint64_t)-1)
 
 /*
  * inputs:
- * createprops          list of properties requested by creator
- * default_zplver       zpl version to use if unspecified in createprops
- * fuids_ok             fuids allowed in this version of the spa?
  * os                   parent objset pointer (NULL if root fs)
+ * fuids_ok             fuids allowed in this version of the spa?
+ * sa_ok                SAs allowed in this version of the spa?
+ * createprops          list of properties requested by creator
  *
  * outputs:
  * zplprops     values for the zplprops we attach to the master node object
  * is_ci        true if requested file system will be purely case-insensitive
  *