diff options
author | Eric Piel <Eric.Piel@tremplin-utc.net> | 2006-03-10 04:34:16 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-03-26 03:43:06 -0500 |
commit | ff8c288d7d1a368b663058cdee1ea0adcdef2fa2 (patch) | |
tree | 04de5f31a6773e1663a521c1217cb494c18dfa0e /drivers/cpufreq | |
parent | a159b82770ab84e1b5e0306fa65e158188492b16 (diff) |
[PATCH] cpufreq_ondemand: Warn if it cannot run due to too long transition latency
Display a warning if the ondemand governor can not be selected due to a
transition latency of the cpufreq driver which is too long.
Signed-off-by: Eric Piel <eric.piel@tremplin-utc.net>
Acked-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq_ondemand.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c index 69aa1db8336c..6430489db6f4 100644 --- a/drivers/cpufreq/cpufreq_ondemand.c +++ b/drivers/cpufreq/cpufreq_ondemand.c | |||
@@ -395,8 +395,11 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
395 | return -EINVAL; | 395 | return -EINVAL; |
396 | 396 | ||
397 | if (policy->cpuinfo.transition_latency > | 397 | if (policy->cpuinfo.transition_latency > |
398 | (TRANSITION_LATENCY_LIMIT * 1000)) | 398 | (TRANSITION_LATENCY_LIMIT * 1000)) { |
399 | printk(KERN_WARNING "ondemand governor failed to load " | ||
400 | "due to too long transition latency\n"); | ||
399 | return -EINVAL; | 401 | return -EINVAL; |
402 | } | ||
400 | if (this_dbs_info->enable) /* Already enabled */ | 403 | if (this_dbs_info->enable) /* Already enabled */ |
401 | break; | 404 | break; |
402 | 405 | ||