Whamcloud - gitweb
git://git.whamcloud.com
/
tools
/
e2fsprogs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe75afb
)
mke2fs: change bigalloc default cluster size to 16*blocksize
author
Theodore Ts'o
<tytso@mit.edu>
Thu, 16 Jun 2011 14:11:06 +0000
(10:11 -0400)
committer
Theodore Ts'o
<tytso@mit.edu>
Thu, 16 Jun 2011 14:11:06 +0000
(10:11 -0400)
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>
misc/mke2fs.c
patch
|
blob
|
history
diff --git
a/misc/mke2fs.c
b/misc/mke2fs.c
index
788e0fc
..
05cbbce
100644
(file)
--- 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