From: Theodore Ts'o Date: Thu, 16 Jun 2011 14:11:06 +0000 (-0400) Subject: mke2fs: change bigalloc default cluster size to 16*blocksize X-Git-Tag: v1.42-WIP-0702~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b12a0bc30152f85ccafab159fcc2f50fe6ce2551;p=thirdparty%2Fe2fsprogs.git mke2fs: change bigalloc default cluster size to 16*blocksize This was the original default, but it accidentally got changed to 4*blocksize in commit 4c2b28ab67. Signed-off-by: "Theodore Ts'o" --- diff --git a/misc/mke2fs.c b/misc/mke2fs.c index 788e0fc2b..05cbbce77 100644 --- a/misc/mke2fs.c +++ b/misc/mke2fs.c @@ -1802,7 +1802,7 @@ profile_error: if (!cluster_size) cluster_size = get_int_from_profile(fs_types, "cluster_size", - blocksize*4); + blocksize*16); fs_param.s_log_cluster_size = int_log2(cluster_size >> EXT2_MIN_CLUSTER_LOG_SIZE); } else