Commit 17f34f97 authored by Zdenek Kabelac's avatar Zdenek Kabelac Committed by Greg Kroah-Hartman

dm: add missing del_gendisk to alloc_dev error path

commit 03022c54 upstream.

Add missing del_gendisk() to error path when creation of workqueue fails.
Otherwice there is a resource leak and following warning is shown:

WARNING: at fs/sysfs/dir.c:487 sysfs_add_one+0xc5/0x160()
sysfs: cannot create duplicate filename '/devices/virtual/block/dm-0'
Signed-off-by: default avatarZdenek Kabelac <zkabelac@redhat.com>
Reviewed-by: default avatarJonathan Brassow <jbrassow@redhat.com>
Signed-off-by: default avatarAlasdair G Kergon <agk@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 67060bc3
...@@ -1819,6 +1819,7 @@ static struct mapped_device *alloc_dev(int minor) ...@@ -1819,6 +1819,7 @@ static struct mapped_device *alloc_dev(int minor)
bad_bdev: bad_bdev:
destroy_workqueue(md->wq); destroy_workqueue(md->wq);
bad_thread: bad_thread:
del_gendisk(md->disk);
put_disk(md->disk); put_disk(md->disk);
bad_disk: bad_disk:
blk_cleanup_queue(md->queue); blk_cleanup_queue(md->queue);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment