From: NeilBrown Date: Fri, 17 Jul 2015 03:10:25 +0000 (+1000) Subject: Assemble: really ensure stripe_cache is bit enough to handle new chunk size X-Git-Tag: mdadm-3.3.3~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29a312f2f39afeb9e01a27e77655dda8de4cd7e3;p=thirdparty%2Fmdadm.git Assemble: really ensure stripe_cache is bit enough to handle new chunk size Earlier patch: 56fcbcbb6f17df0e5dedf59744deee037c5d5fbd calculated the proper chunk size - but didn't use it.. Let's actually use it this time. Signed-off-by: NeilBrown --- diff --git a/Assemble.c b/Assemble.c index f5c8dcd6..19609273 100644 --- a/Assemble.c +++ b/Assemble.c @@ -1113,12 +1113,12 @@ static int start_array(int mdfd, if (content->reshape_active && content->new_chunk > chunk_size) chunk_size = content->new_chunk; - if (256 < 4 * ((content->array.chunk_size+4065)/4096)) { + if (256 < 4 * ((chunk_size+4065)/4096)) { struct mdinfo *sra = sysfs_read(mdfd, NULL, 0); if (sra) sysfs_set_num(sra, NULL, "stripe_cache_size", - (4 * content->array.chunk_size / 4096) + 1); + (4 * chunk_size / 4096) + 1); sysfs_free(sra); } }