cpuidle: fix error handling in __cpuidle_register_device
authorColin Cross <[email protected]>
Tue, 8 May 2012 00:57:40 +0000 (17:57 -0700)
committerLen Brown <[email protected]>
Sat, 2 Jun 2012 04:48:49 +0000 (00:48 -0400)
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 <[email protected]>
Tested-by: Santosh Shilimkar <[email protected]>
Reviewed-by: Kevin Hilman <[email protected]>
Tested-by: Kevin Hilman <[email protected]>
Signed-off-by: Colin Cross <[email protected]>
Reviewed-by: Rafael J. Wysocki <[email protected]>
Signed-off-by: Len Brown <[email protected]>
drivers/cpuidle/cpuidle.c

index 3e3e3e4d958171c99fefcc87fa8e858ee733f018..4540672a2e1cebcb6a5fdc39d7dfc932171da5e7 100644 (file)
@@ -403,13 +403,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;
 }
 
 /**