diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-08-31 08:18:23 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-09-09 20:49:46 -0400 |
commit | 19c763031acb831a5ab9c1a701b7fedda073eb3f (patch) | |
tree | 86ddfcb2266d1cc4946d7b24f2a6320277517cc2 | |
parent | f73d39338444d9915c746403bd98b145ff9d2ba4 (diff) |
cpufreq: serialize calls to __cpufreq_governor()
We can't take a big lock around __cpufreq_governor() as this causes
recursive locking for some cases. But calls to this routine must be
serialized for every policy. Otherwise we can see some unpredictable
events.
For example, consider following scenario:
__cpufreq_remove_dev()
__cpufreq_governor(policy, CPUFREQ_GOV_STOP);
policy->governor->governor(policy, CPUFREQ_GOV_STOP);
cpufreq_governor_dbs()
case CPUFREQ_GOV_STOP:
mutex_destroy(&cpu_cdbs->timer_mutex)
cpu_cdbs->cur_policy = NULL;
<PREEMPT>
store()
__cpufreq_set_policy()
__cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
policy->governor->governor(policy, CPUFREQ_GOV_LIMITS);
case CPUFREQ_GOV_LIMITS:
mutex_lock(&cpu_cdbs->timer_mutex); <-- Warning (destroyed mutex)
if (policy->max < cpu_cdbs->cur_policy->cur) <- cur_policy == NULL
And so store() will eventually result in a crash if cur_policy is
NULL at this point.
Introduce an additional variable which would guarantee serialization
here.
Reported-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 7 | ||||
-rw-r--r-- | include/linux/cpufreq.h | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 06a2496d2075..7e6baa58a7f2 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -1692,13 +1692,15 @@ static int __cpufreq_governor(struct cpufreq_policy *policy, | |||
1692 | policy->cpu, event); | 1692 | policy->cpu, event); |
1693 | 1693 | ||
1694 | mutex_lock(&cpufreq_governor_lock); | 1694 | mutex_lock(&cpufreq_governor_lock); |
1695 | if ((policy->governor_enabled && event == CPUFREQ_GOV_START) | 1695 | if (policy->governor_busy |
1696 | || (policy->governor_enabled && event == CPUFREQ_GOV_START) | ||
1696 | || (!policy->governor_enabled | 1697 | || (!policy->governor_enabled |
1697 | && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) { | 1698 | && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) { |
1698 | mutex_unlock(&cpufreq_governor_lock); | 1699 | mutex_unlock(&cpufreq_governor_lock); |
1699 | return -EBUSY; | 1700 | return -EBUSY; |
1700 | } | 1701 | } |
1701 | 1702 | ||
1703 | policy->governor_busy = true; | ||
1702 | if (event == CPUFREQ_GOV_STOP) | 1704 | if (event == CPUFREQ_GOV_STOP) |
1703 | policy->governor_enabled = false; | 1705 | policy->governor_enabled = false; |
1704 | else if (event == CPUFREQ_GOV_START) | 1706 | else if (event == CPUFREQ_GOV_START) |
@@ -1727,6 +1729,9 @@ static int __cpufreq_governor(struct cpufreq_policy *policy, | |||
1727 | ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret)) | 1729 | ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret)) |
1728 | module_put(policy->governor->owner); | 1730 | module_put(policy->governor->owner); |
1729 | 1731 | ||
1732 | mutex_lock(&cpufreq_governor_lock); | ||
1733 | policy->governor_busy = false; | ||
1734 | mutex_unlock(&cpufreq_governor_lock); | ||
1730 | return ret; | 1735 | return ret; |
1731 | } | 1736 | } |
1732 | 1737 | ||
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h index d568f3975eeb..cca885dac1d3 100644 --- a/include/linux/cpufreq.h +++ b/include/linux/cpufreq.h | |||
@@ -76,6 +76,7 @@ struct cpufreq_policy { | |||
76 | struct cpufreq_governor *governor; /* see below */ | 76 | struct cpufreq_governor *governor; /* see below */ |
77 | void *governor_data; | 77 | void *governor_data; |
78 | bool governor_enabled; /* governor start/stop flag */ | 78 | bool governor_enabled; /* governor start/stop flag */ |
79 | bool governor_busy; | ||
79 | 80 | ||
80 | struct work_struct update; /* if update_policy() needs to be | 81 | struct work_struct update; /* if update_policy() needs to be |
81 | * called, but you're in IRQ context */ | 82 | * called, but you're in IRQ context */ |