summaryrefslogtreecommitdiff
path: root/misc/mke2fs.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2011-06-16 10:11:06 -0400
committerTheodore Ts'o <tytso@mit.edu>2011-06-16 10:11:06 -0400
commitb12a0bc30152f85ccafab159fcc2f50fe6ce2551 (patch)
tree249206176517c8918ccb319e4571284e6580e6ae /misc/mke2fs.c
parentfe75afbf33389f71f8588af388d0c01db0cbf753 (diff)
downloade2fsprogs-b12a0bc30152f85ccafab159fcc2f50fe6ce2551.tar.gz
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" <tytso@mit.edu>
Diffstat (limited to 'misc/mke2fs.c')
-rw-r--r--misc/mke2fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/mke2fs.c b/misc/mke2fs.c
index 788e0fc2..05cbbce7 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