thermal: convert cpu_cooling to use an IDA
authorMatthew Wilcox <mawilcox@microsoft.com>
Wed, 21 Dec 2016 17:47:05 +0000 (09:47 -0800)
committerZhang Rui <rui.zhang@intel.com>
Wed, 4 Jan 2017 04:47:28 +0000 (12:47 +0800)
commitae606089621ef0349402cfcbeca33a82abbd0fd0
tree2d949e660aef3149afd7554f0c626fdf7b079a45
parent7a6639dca61bf14e3aad8fd31d1f16ed0acf0a60
thermal: convert cpu_cooling to use an IDA

thermal cpu cooling does not use the ability to look up pointers by ID,
so convert it from using an IDR to the more space-efficient IDA.

The cooling_cpufreq_lock was being used to protect cpufreq_dev_count as
well as the IDR.  Rather than keep the mutex to protect a single integer,
I expanded the scope of cooling_list_lock to also cover cpufreq_dev_count.
We could also convert cpufreq_dev_count into an atomic.

Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
drivers/thermal/cpu_cooling.c