Commit 964e7913 authored by raz ben yehuda's avatar raz ben yehuda Committed by NeilBrown

md: raid10: chunk size check in run

have raid10 check chunk size in run method instead of in md

Signed-off-by: raziebe@gmail.com
Signed-off-by: default avatarNeilBrown <neilb@suse.de>
parent 92e59b6b
......@@ -2050,9 +2050,10 @@ static int run(mddev_t *mddev)
int nc, fc, fo;
sector_t stride, size;
if (mddev->chunk_size < PAGE_SIZE) {
if (mddev->chunk_size < PAGE_SIZE ||
!is_power_of_2(mddev->chunk_size)) {
printk(KERN_ERR "md/raid10: chunk size must be "
"at least PAGE_SIZE(%ld).\n", PAGE_SIZE);
"at least PAGE_SIZE(%ld) and be a power of 2.\n", PAGE_SIZE);
return -EINVAL;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment