Merge branch 'md-fixes' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md into block-5.13
Pull MD fix from Song. * 'md-fixes' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md: md/raid5: remove an incorrect assert in in_chunk_boundary
This commit is contained in:
commit
094c271add
|
@ -5311,8 +5311,6 @@ static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
|
||||||
unsigned int chunk_sectors;
|
unsigned int chunk_sectors;
|
||||||
unsigned int bio_sectors = bio_sectors(bio);
|
unsigned int bio_sectors = bio_sectors(bio);
|
||||||
|
|
||||||
WARN_ON_ONCE(bio->bi_bdev->bd_partno);
|
|
||||||
|
|
||||||
chunk_sectors = min(conf->chunk_sectors, conf->prev_chunk_sectors);
|
chunk_sectors = min(conf->chunk_sectors, conf->prev_chunk_sectors);
|
||||||
return chunk_sectors >=
|
return chunk_sectors >=
|
||||||
((sector & (chunk_sectors - 1)) + bio_sectors);
|
((sector & (chunk_sectors - 1)) + bio_sectors);
|
||||||
|
|
Loading…
Reference in New Issue