From: Colin Cross Date: Wed, 14 Mar 2012 18:29:51 +0000 (-0700) Subject: cpuidle: fix error handling in __cpuidle_register_device X-Git-Tag: next-20120724~73^2~3 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d0137a9d4fd40007a85f0a7006b091de6a0ba85e;p=karo-tx-linux.git cpuidle: fix error handling in __cpuidle_register_device Fix the error handling in __cpuidle_register_device to include the missing list_del. Move it to a label, which will simplify the error handling when coupled states are added. Reviewed-by: Santosh Shilimkar Tested-by: Santosh Shilimkar Reviewed-by: Kevin Hilman Tested-by: Kevin Hilman Reviewed-by: Rafael J. Wysocki Signed-off-by: Colin Cross Signed-off-by: Daniel Lezcano --- diff --git a/drivers/cpuidle/cpuidle.c b/drivers/cpuidle/cpuidle.c index cd266101c80e..3c37ced0e0c0 100644 --- a/drivers/cpuidle/cpuidle.c +++ b/drivers/cpuidle/cpuidle.c @@ -392,13 +392,18 @@ static int __cpuidle_register_device(struct cpuidle_device *dev) per_cpu(cpuidle_devices, dev->cpu) = dev; list_add(&dev->device_list, &cpuidle_detected_devices); - if ((ret = cpuidle_add_sysfs(cpu_dev))) { - module_put(cpuidle_driver->owner); - return ret; - } + ret = cpuidle_add_sysfs(cpu_dev); + if (ret) + goto err_sysfs; dev->registered = 1; return 0; + +err_sysfs: + list_del(&dev->device_list); + per_cpu(cpuidle_devices, dev->cpu) = NULL; + module_put(cpuidle_driver->owner); + return ret; } /**