Commit 0c098220 authored by Yuanhan Liu's avatar Yuanhan Liu Committed by NeilBrown

md: check the return of mddev_find()

Check the return of mddev_find(), since it may fail due to out of
memeory or out of usable minor number.

The reason I chose -ENODEV instead of -ENOMEM or something else is
md_alloc() function chose that ;)
Signed-off-by: default avatarYuanhan Liu <yuanhan.liu@linux.intel.com>
Signed-off-by: default avatarNeilBrown <neilb@suse.de>
parent 4f0a5e01
...@@ -6618,6 +6618,9 @@ static int md_open(struct block_device *bdev, fmode_t mode) ...@@ -6618,6 +6618,9 @@ static int md_open(struct block_device *bdev, fmode_t mode)
struct mddev *mddev = mddev_find(bdev->bd_dev); struct mddev *mddev = mddev_find(bdev->bd_dev);
int err; int err;
if (!mddev)
return -ENODEV;
if (mddev->gendisk != bdev->bd_disk) { if (mddev->gendisk != bdev->bd_disk) {
/* we are racing with mddev_put which is discarding this /* we are racing with mddev_put which is discarding this
* bd_disk. * bd_disk.
......
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