diff options
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 2 | ||||
-rw-r--r-- | drivers/cpufreq/cpufreq_governor.c | 6 | ||||
-rw-r--r-- | drivers/cpufreq/cpufreq_governor.h | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 8d19f7c06010..a42e6aec4aad 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -39,7 +39,7 @@ static struct cpufreq_driver *cpufreq_driver; | |||
39 | static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data); | 39 | static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data); |
40 | static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data_fallback); | 40 | static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data_fallback); |
41 | static DEFINE_RWLOCK(cpufreq_driver_lock); | 41 | static DEFINE_RWLOCK(cpufreq_driver_lock); |
42 | static DEFINE_MUTEX(cpufreq_governor_lock); | 42 | DEFINE_MUTEX(cpufreq_governor_lock); |
43 | static LIST_HEAD(cpufreq_policy_list); | 43 | static LIST_HEAD(cpufreq_policy_list); |
44 | 44 | ||
45 | #ifdef CONFIG_HOTPLUG_CPU | 45 | #ifdef CONFIG_HOTPLUG_CPU |
diff --git a/drivers/cpufreq/cpufreq_governor.c b/drivers/cpufreq/cpufreq_governor.c index e6be63561fa6..ba43991ba98a 100644 --- a/drivers/cpufreq/cpufreq_governor.c +++ b/drivers/cpufreq/cpufreq_governor.c | |||
@@ -119,8 +119,9 @@ void gov_queue_work(struct dbs_data *dbs_data, struct cpufreq_policy *policy, | |||
119 | { | 119 | { |
120 | int i; | 120 | int i; |
121 | 121 | ||
122 | mutex_lock(&cpufreq_governor_lock); | ||
122 | if (!policy->governor_enabled) | 123 | if (!policy->governor_enabled) |
123 | return; | 124 | goto out_unlock; |
124 | 125 | ||
125 | if (!all_cpus) { | 126 | if (!all_cpus) { |
126 | /* | 127 | /* |
@@ -135,6 +136,9 @@ void gov_queue_work(struct dbs_data *dbs_data, struct cpufreq_policy *policy, | |||
135 | for_each_cpu(i, policy->cpus) | 136 | for_each_cpu(i, policy->cpus) |
136 | __gov_queue_work(i, dbs_data, delay); | 137 | __gov_queue_work(i, dbs_data, delay); |
137 | } | 138 | } |
139 | |||
140 | out_unlock: | ||
141 | mutex_unlock(&cpufreq_governor_lock); | ||
138 | } | 142 | } |
139 | EXPORT_SYMBOL_GPL(gov_queue_work); | 143 | EXPORT_SYMBOL_GPL(gov_queue_work); |
140 | 144 | ||
diff --git a/drivers/cpufreq/cpufreq_governor.h b/drivers/cpufreq/cpufreq_governor.h index b5f2b8618949..bfb9ae14142c 100644 --- a/drivers/cpufreq/cpufreq_governor.h +++ b/drivers/cpufreq/cpufreq_governor.h | |||
@@ -257,6 +257,8 @@ static ssize_t show_sampling_rate_min_gov_pol \ | |||
257 | return sprintf(buf, "%u\n", dbs_data->min_sampling_rate); \ | 257 | return sprintf(buf, "%u\n", dbs_data->min_sampling_rate); \ |
258 | } | 258 | } |
259 | 259 | ||
260 | extern struct mutex cpufreq_governor_lock; | ||
261 | |||
260 | void dbs_check_cpu(struct dbs_data *dbs_data, int cpu); | 262 | void dbs_check_cpu(struct dbs_data *dbs_data, int cpu); |
261 | bool need_load_eval(struct cpu_dbs_common_info *cdbs, | 263 | bool need_load_eval(struct cpu_dbs_common_info *cdbs, |
262 | unsigned int sampling_rate); | 264 | unsigned int sampling_rate); |