md/raid10: fix transcription error in calc_sectors conversion.
authorNeilBrown <neilb@suse.de>
Fri, 18 May 2012 23:01:13 +0000 (09:01 +1000)
committerNeilBrown <neilb@suse.de>
Fri, 18 May 2012 23:01:13 +0000 (09:01 +1000)
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>


No differences found