]> www.infradead.org Git - users/hch/block.git/commitdiff
md: add error handling support for add_disk()
authorLuis Chamberlain <mcgrof@kernel.org>
Tue, 31 Aug 2021 07:19:34 +0000 (09:19 +0200)
committerChristoph Hellwig <hch@lst.de>
Tue, 31 Aug 2021 07:19:34 +0000 (09:19 +0200)
We never checked for errors on add_disk() as this function
returned void. Now that this is fixed, use the shiny new
error handling.

We just do the unwinding of what was not done before, and are
sure to unlock prior to bailing.

Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/md/md.c

index 6c0c3d0d905aaf79e6a9e9842a96da59a3e2819c..6bd5ad3c30b4151cf10bcc578922faeb35aab507 100644 (file)
@@ -5700,7 +5700,11 @@ static int md_alloc(dev_t dev, char *name)
        disk->flags |= GENHD_FL_EXT_DEVT;
        disk->events |= DISK_EVENT_MEDIA_CHANGE;
        mddev->gendisk = disk;
-       add_disk(disk);
+       error = add_disk(disk);
+       if (error) {
+               blk_cleanup_disk(disk);
+               goto abort;
+       }
 
        error = kobject_add(&mddev->kobj, &disk_to_dev(disk)->kobj, "%s", "md");
        if (error) {