diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-09-20 22:37:31 +0530 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-09-25 03:24:02 +0200 |
commit | 26ca8694344af4c833d22590c5b77d6b9cff0722 (patch) | |
tree | 9809302f3fd16f12e722d6eccb0873f767f6f67f /drivers/cpufreq | |
parent | 8a61e12e84597b5f8155ac91b44dea866ccfaac2 (diff) | |
download | linux-stable-26ca8694344af4c833d22590c5b77d6b9cff0722.tar.gz linux-stable-26ca8694344af4c833d22590c5b77d6b9cff0722.tar.bz2 linux-stable-26ca8694344af4c833d22590c5b77d6b9cff0722.zip |
cpufreq: check cpufreq driver is valid and cpufreq isn't disabled in cpufreq_get()
cpufreq_get() can be called from external drivers which might not be aware if
cpufreq driver is registered or not. And so we should actually check if cpufreq
driver is registered or not and also if cpufreq is active or disabled, at the
beginning of cpufreq_get().
Otherwise call to lock_policy_rwsem_read() might hit BUG_ON(!policy).
Reported-and-tested-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-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/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 89b3c52cd5c3..04548f7023af 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -1460,6 +1460,9 @@ unsigned int cpufreq_get(unsigned int cpu) { unsigned int ret_freq = 0; + if (cpufreq_disabled() || !cpufreq_driver) + return -ENOENT; + if (!down_read_trylock(&cpufreq_rwsem)) return 0; |