Merge tag 'md-6.12-20241018' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md into block-6.12
Pull MD fixes from Song. * tag 'md-6.12-20241018' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md: md/raid10: fix null ptr dereference in raid10_size() md: ensure child flush IO does not affect origin bio->bi_status
This commit is contained in:
commit
49c234b50a
@ -546,6 +546,26 @@ static int mddev_set_closing_and_sync_blockdev(struct mddev *mddev, int opener_n
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* The only difference from bio_chain_endio() is that the current
|
||||
* bi_status of bio does not affect the bi_status of parent.
|
||||
*/
|
||||
static void md_end_flush(struct bio *bio)
|
||||
{
|
||||
struct bio *parent = bio->bi_private;
|
||||
|
||||
/*
|
||||
* If any flush io error before the power failure,
|
||||
* disk data may be lost.
|
||||
*/
|
||||
if (bio->bi_status)
|
||||
pr_err("md: %pg flush io error %d\n", bio->bi_bdev,
|
||||
blk_status_to_errno(bio->bi_status));
|
||||
|
||||
bio_put(bio);
|
||||
bio_endio(parent);
|
||||
}
|
||||
|
||||
bool md_flush_request(struct mddev *mddev, struct bio *bio)
|
||||
{
|
||||
struct md_rdev *rdev;
|
||||
@ -565,7 +585,9 @@ bool md_flush_request(struct mddev *mddev, struct bio *bio)
|
||||
new = bio_alloc_bioset(rdev->bdev, 0,
|
||||
REQ_OP_WRITE | REQ_PREFLUSH, GFP_NOIO,
|
||||
&mddev->bio_set);
|
||||
bio_chain(new, bio);
|
||||
new->bi_private = bio;
|
||||
new->bi_end_io = md_end_flush;
|
||||
bio_inc_remaining(bio);
|
||||
submit_bio(new);
|
||||
}
|
||||
|
||||
|
@ -4061,10 +4061,13 @@ static int raid10_run(struct mddev *mddev)
|
||||
}
|
||||
|
||||
if (!mddev_is_dm(conf->mddev)) {
|
||||
ret = raid10_set_queue_limits(mddev);
|
||||
if (ret)
|
||||
int err = raid10_set_queue_limits(mddev);
|
||||
|
||||
if (err) {
|
||||
ret = err;
|
||||
goto out_free_conf;
|
||||
}
|
||||
}
|
||||
|
||||
/* need to check that every block has at least one working mirror */
|
||||
if (!enough(conf, -1)) {
|
||||
|
Loading…
Reference in New Issue
Block a user