aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/powercap
diff options
context:
space:
mode:
authorSrivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>2014-03-10 16:39:26 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-03-20 08:43:44 -0400
commit009f225ef050d231ebb7b87264a21a7daac0f175 (patch)
tree520aab509ac35b0030ad955fa976f6108e666c2c /drivers/powercap
parent4b0b68af37b930403cf9074c0cf504fc2387c2fa (diff)
powercap, intel-rapl: Fix CPU hotplug callback registration
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifier); put_online_cpus(); This is wrong, since it is prone to ABBA deadlocks involving the cpu_add_remove_lock and the cpu_hotplug.lock (when running concurrently with CPU hotplug operations). Instead, the correct and race-free way of performing the callback registration is: cpu_notifier_register_begin(); for_each_online_cpu(cpu) init_cpu(cpu); /* Note the use of the double underscored version of the API */ __register_cpu_notifier(&foobar_cpu_notifier); cpu_notifier_register_done(); Fix the intel-rapl code in the powercap driver by using this latter form of callback registration. But retain the calls to get/put_online_cpus(), since they also protect the function rapl_cleanup_data(). By nesting get/put_online_cpus() *inside* cpu_notifier_register_begin/done(), we avoid the ABBA deadlock possibility mentioned above. Cc: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Cc: Ingo Molnar <mingo@kernel.org> Tested-by: Jacob Pan <jacob.jun.pan@linux.intel.com> Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/powercap')
-rw-r--r--drivers/powercap/intel_rapl.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/powercap/intel_rapl.c b/drivers/powercap/intel_rapl.c
index 3c6768378a94..d6c74c1b5ea7 100644
--- a/drivers/powercap/intel_rapl.c
+++ b/drivers/powercap/intel_rapl.c
@@ -1369,6 +1369,9 @@ static int __init rapl_init(void)
1369 1369
1370 return -ENODEV; 1370 return -ENODEV;
1371 } 1371 }
1372
1373 cpu_notifier_register_begin();
1374
1372 /* prevent CPU hotplug during detection */ 1375 /* prevent CPU hotplug during detection */
1373 get_online_cpus(); 1376 get_online_cpus();
1374 ret = rapl_detect_topology(); 1377 ret = rapl_detect_topology();
@@ -1380,20 +1383,23 @@ static int __init rapl_init(void)
1380 ret = -ENODEV; 1383 ret = -ENODEV;
1381 goto done; 1384 goto done;
1382 } 1385 }
1383 register_hotcpu_notifier(&rapl_cpu_notifier); 1386 __register_hotcpu_notifier(&rapl_cpu_notifier);
1384done: 1387done:
1385 put_online_cpus(); 1388 put_online_cpus();
1389 cpu_notifier_register_done();
1386 1390
1387 return ret; 1391 return ret;
1388} 1392}
1389 1393
1390static void __exit rapl_exit(void) 1394static void __exit rapl_exit(void)
1391{ 1395{
1396 cpu_notifier_register_begin();
1392 get_online_cpus(); 1397 get_online_cpus();
1393 unregister_hotcpu_notifier(&rapl_cpu_notifier); 1398 __unregister_hotcpu_notifier(&rapl_cpu_notifier);
1394 rapl_unregister_powercap(); 1399 rapl_unregister_powercap();
1395 rapl_cleanup_data(); 1400 rapl_cleanup_data();
1396 put_online_cpus(); 1401 put_online_cpus();
1402 cpu_notifier_register_done();
1397} 1403}
1398 1404
1399module_init(rapl_init); 1405module_init(rapl_init);