提交 ecfbf6fd 编写于 作者: R Rafael J. Wysocki 提交者: Greg Kroah-Hartman

Driver core: Fix device_add_attrs() error code path

If the addition of dev_attr_online fails, device_add_attrs() should
remove device attribute groups as well as type and class attribute
groups before returning an error code.  Make that happen.
Signed-off-by: NRafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: NToshi Kani <toshi.kani@hp.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 80b9bbef
...@@ -491,11 +491,13 @@ static int device_add_attrs(struct device *dev) ...@@ -491,11 +491,13 @@ static int device_add_attrs(struct device *dev)
if (device_supports_offline(dev) && !dev->offline_disabled) { if (device_supports_offline(dev) && !dev->offline_disabled) {
error = device_create_file(dev, &dev_attr_online); error = device_create_file(dev, &dev_attr_online);
if (error) if (error)
goto err_remove_type_groups; goto err_remove_dev_groups;
} }
return 0; return 0;
err_remove_dev_groups:
device_remove_groups(dev, dev->groups);
err_remove_type_groups: err_remove_type_groups:
if (type) if (type)
device_remove_groups(dev, type->groups); device_remove_groups(dev, type->groups);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册