From b12a0bc30152f85ccafab159fcc2f50fe6ce2551 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 16 Jun 2011 10:11:06 -0400 Subject: [PATCH] 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" --- misc/mke2fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/mke2fs.c b/misc/mke2fs.c index 788e0fc..05cbbce 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 -- 1.8.3.1