From 29a312f2f39afeb9e01a27e77655dda8de4cd7e3 Mon Sep 17 00:00:00 2001 From: NeilBrown Date: Fri, 17 Jul 2015 13:10:25 +1000 Subject: [PATCH] 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 --- Assemble.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } } -- 2.39.2