Whamcloud - gitweb
mke2fs: the -g option will now specify the clusters per block group
authorTheodore Ts'o <tytso@mit.edu>
Mon, 14 Jan 2013 22:30:23 +0000 (17:30 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 15 Jan 2013 19:05:48 +0000 (14:05 -0500)
If bigalloc is enabled, then -g will specify the clusters per block
group.  (If bigalloc is not enabled, then a cluster == a block, so the
meaning of -g is not changed.)

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reviewed-by: Zheng Liu <wenqing.lz@taobao.com>
misc/mke2fs.c

index 98c2035..2103f63 100644 (file)
@@ -1962,6 +1962,15 @@ profile_error:
                }
        }
 
+       /*
+        * If the bigalloc feature is enabled, then the -g option will
+        * specify the number of clusters per group.
+        */
+       if (fs_param.s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_BIGALLOC) {
+               fs_param.s_clusters_per_group = fs_param.s_blocks_per_group;
+               fs_param.s_blocks_per_group = 0;
+       }
+
        if (inode_size == 0)
                inode_size = get_int_from_profile(fs_types, "inode_size", 0);
        if (!flex_bg_size && (fs_param.s_feature_incompat &