mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
PM / Domains: Fix memory leak on error path in pm_genpd_attach_cpuidle
If pm_genpd_attach_cpudidle failed we leak memory stored in 'cpu_data'. Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
2978af545b
commit
debe081aaa
@ -1862,7 +1862,7 @@ int pm_genpd_attach_cpuidle(struct generic_pm_domain *genpd, int state)
|
||||
cpuidle_drv = cpuidle_driver_ref();
|
||||
if (!cpuidle_drv) {
|
||||
ret = -ENODEV;
|
||||
goto out;
|
||||
goto err_drv;
|
||||
}
|
||||
if (cpuidle_drv->state_count <= state) {
|
||||
ret = -EINVAL;
|
||||
@ -1884,6 +1884,9 @@ int pm_genpd_attach_cpuidle(struct generic_pm_domain *genpd, int state)
|
||||
|
||||
err:
|
||||
cpuidle_driver_unref();
|
||||
|
||||
err_drv:
|
||||
kfree(cpu_data);
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user