[dm-devel] [PATCH] dm-raid: fix inaccessible superblocks causing oops in configure_discard_support

heinzm at redhat.com heinzm at redhat.com
Wed Oct 29 17:05:50 UTC 2014


From: Heinz Mauelshagen <heinzm at redhat.com>

In case of missing metadata device(s), the failing read of the superblock
ause the metadata and data devices to be removed from the dev array
in struct raid_set setting references to both devces to NULL.
configure_discard_support nonetheless tries to access the data dev
unconditionally causing an oops.

Signed-off-by: Heinz Mauelshagen <heinzm at redhat.com>


diff --git a/drivers/md/dm-raid.c b/drivers/md/dm-raid.c
index 4857fa4..5818596 100644
--- a/drivers/md/dm-raid.c
+++ b/drivers/md/dm-raid.c
@@ -1169,8 +1169,12 @@ static void configure_discard_support(struct dm_target *ti, struct raid_set *rs)
 	raid456 = (rs->md.level == 4 || rs->md.level == 5 || rs->md.level == 6);
 
 	for (i = 0; i < rs->md.raid_disks; i++) {
-		struct request_queue *q = bdev_get_queue(rs->dev[i].rdev.bdev);
+		struct request_queue *q;
 
+		if (!rs->dev[i].rdev.bdev)
+			continue;
+
+		q = bdev_get_queue(rs->dev[i].rdev.bdev);
 		if (!q || !blk_queue_discard(q))
 			return;
 
-- 
1.9.3




More information about the dm-devel mailing list