mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
driver core: cpu: use put_device() if device_register fail
if device_register() returned an error! Always use put_device() to give up the reference initialized. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c1cc0d5114
commit
3aaba245df
@ -382,8 +382,10 @@ int register_cpu(struct cpu *cpu, int num)
|
|||||||
if (cpu->hotpluggable)
|
if (cpu->hotpluggable)
|
||||||
cpu->dev.groups = hotplugable_cpu_attr_groups;
|
cpu->dev.groups = hotplugable_cpu_attr_groups;
|
||||||
error = device_register(&cpu->dev);
|
error = device_register(&cpu->dev);
|
||||||
if (error)
|
if (error) {
|
||||||
|
put_device(&cpu->dev);
|
||||||
return error;
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
per_cpu(cpu_sys_devices, num) = &cpu->dev;
|
per_cpu(cpu_sys_devices, num) = &cpu->dev;
|
||||||
register_cpu_under_node(num, cpu_to_node(num));
|
register_cpu_under_node(num, cpu_to_node(num));
|
||||||
|
Loading…
Reference in New Issue
Block a user