MD RAID10: Fix oops when creating RAID10 arrays via dm-raid.c
Commit2863b9eb
didn't take into account the changes to add TRIM support to RAID10 (commit532a2a3fb
). That is, when using dm-raid.c to create the RAID10 arrays, there is no mddev->gendisk or mddev->queue. The code added to support TRIM simply assumes that mddev->queue is available without checking. The result is an oops any time dm-raid.c attempts to create a RAID10 device. Signed-off-by: Jonathan Brassow <jbrassow@redhat.com> Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
committed by
NeilBrown
parent
02b898f2f0
commit
ed30be077e
@@ -1783,7 +1783,7 @@ static int raid10_add_disk(struct mddev *mddev, struct md_rdev *rdev)
|
|||||||
clear_bit(Unmerged, &rdev->flags);
|
clear_bit(Unmerged, &rdev->flags);
|
||||||
}
|
}
|
||||||
md_integrity_add_rdev(rdev, mddev);
|
md_integrity_add_rdev(rdev, mddev);
|
||||||
if (blk_queue_discard(bdev_get_queue(rdev->bdev)))
|
if (mddev->queue && blk_queue_discard(bdev_get_queue(rdev->bdev)))
|
||||||
queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, mddev->queue);
|
queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, mddev->queue);
|
||||||
|
|
||||||
print_conf(conf);
|
print_conf(conf);
|
||||||
@@ -3613,11 +3613,14 @@ static int run(struct mddev *mddev)
|
|||||||
discard_supported = true;
|
discard_supported = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (discard_supported)
|
if (mddev->queue) {
|
||||||
queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, mddev->queue);
|
if (discard_supported)
|
||||||
else
|
queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
|
||||||
queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, mddev->queue);
|
mddev->queue);
|
||||||
|
else
|
||||||
|
queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
|
||||||
|
mddev->queue);
|
||||||
|
}
|
||||||
/* need to check that every block has at least one working mirror */
|
/* need to check that every block has at least one working mirror */
|
||||||
if (!enough(conf, -1)) {
|
if (!enough(conf, -1)) {
|
||||||
printk(KERN_ERR "md/raid10:%s: not enough operational mirrors.\n",
|
printk(KERN_ERR "md/raid10:%s: not enough operational mirrors.\n",
|
||||||
|
Reference in New Issue
Block a user