From: NeilBrown Date: Wed, 1 Jul 2009 02:27:21 +0000 (+1000) Subject: md: fix error path when duplicate name is found on md device creation. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1ec22eb2b4a2e1a763106bce36b11c02eaa84e61;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git md: fix error path when duplicate name is found on md device creation. When an md device is created by name (rather than number) we need to check that the name is not already in use. If this check finds a duplicate, we return an error without dropping the lock or freeing the newly create mddev. This patch fixes that. Cc: stable@kernel.org Found-by: Jiri Slaby Signed-off-by: NeilBrown --- diff --git a/drivers/md/md.c b/drivers/md/md.c index 2166af8a7654..58bee2366ea8 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -3862,6 +3862,8 @@ static int md_alloc(dev_t dev, char *name) if (mddev2->gendisk && strcmp(mddev2->gendisk->disk_name, name) == 0) { spin_unlock(&all_mddevs_lock); + mutex_unlock(&disks_mutex); + mddev_put(mddev); return -EEXIST; } spin_unlock(&all_mddevs_lock);