1
0
Fork 0

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: NeilBrown <neilb@suse.de>
hifive-unleashed-5.1
raz ben yehuda 2009-06-16 17:01:22 +10:00 committed by NeilBrown
parent 92e59b6ba2
commit 964e7913b0
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}