[SCSI] bsg: fix bsg_register_queue error path
unfortunately, if IS_ERR(class_dev) is true, that means class_dev isn't null and the check in the error leg is pointless ... it's also asking for trouble to request unregistration of a device we haven't actually created (although it works currently). Fix by using explicit gotos and unregisters. Acked-by: FUJITA Tomonori <tomof@acm.org> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
d73f5222a6
commit
6826ee4fdb
@ -993,7 +993,7 @@ retry:
|
|||||||
if (q->kobj.sd) {
|
if (q->kobj.sd) {
|
||||||
ret = sysfs_create_link(&q->kobj, &bcd->class_dev->kobj, "bsg");
|
ret = sysfs_create_link(&q->kobj, &bcd->class_dev->kobj, "bsg");
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err;
|
goto err_unregister;
|
||||||
}
|
}
|
||||||
|
|
||||||
list_add_tail(&bcd->list, &bsg_class_list);
|
list_add_tail(&bcd->list, &bsg_class_list);
|
||||||
@ -1001,9 +1001,10 @@ retry:
|
|||||||
|
|
||||||
mutex_unlock(&bsg_mutex);
|
mutex_unlock(&bsg_mutex);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
err_unregister:
|
||||||
|
class_device_unregister(class_dev);
|
||||||
err:
|
err:
|
||||||
if (class_dev)
|
|
||||||
class_device_destroy(bsg_class, MKDEV(bsg_major, bcd->minor));
|
|
||||||
mutex_unlock(&bsg_mutex);
|
mutex_unlock(&bsg_mutex);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user