forked from Minki/linux
md/raid10: fix transcription error in calc_sectors conversion.
The old code was sector_div(stride, fc); the new code was sector_dir(size, conf->near_copies); 'size' is right (the stride various wasn't really needed), but 'fc' means 'far_copies', and that is an important difference. Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
parent
0d9f4f135e
commit
b0d634d568
@ -3189,7 +3189,7 @@ static void calc_sectors(struct r10conf *conf, sector_t size)
|
|||||||
if (conf->far_offset)
|
if (conf->far_offset)
|
||||||
conf->stride = 1 << conf->chunk_shift;
|
conf->stride = 1 << conf->chunk_shift;
|
||||||
else {
|
else {
|
||||||
sector_div(size, conf->near_copies);
|
sector_div(size, conf->far_copies);
|
||||||
conf->stride = size << conf->chunk_shift;
|
conf->stride = size << conf->chunk_shift;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user