From: Alexander Clouter Date: Wed, 22 Mar 2006 09:56:23 +0000 (+0000) Subject: [PATCH] cpufreq_conservative: alter default responsiveness X-Git-Tag: v4.13~45753^2~3^2~5 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=e8a02572252f9115c2b8296c40fd8b985f06f872;p=mirror_ubuntu-bionic-kernel.git [PATCH] cpufreq_conservative: alter default responsiveness The sensible approach to making conservative less responsive than ondemand :) As mentioned in patch [1/4]. We do not want conservative to shoot through all the frequencies, its point (by default) is to slowly move through them. By default its ten times less responsive. Signed-off-by: Alexander Clouter Signed-off-by: Dominik Brodowski --- diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c index adecd31f6156..3ca3cf061642 100644 --- a/drivers/cpufreq/cpufreq_conservative.c +++ b/drivers/cpufreq/cpufreq_conservative.c @@ -509,7 +509,7 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, if (latency == 0) latency = 1; - def_sampling_rate = latency * + def_sampling_rate = 10 * latency * DEF_SAMPLING_RATE_LATENCY_MULTIPLIER; if (def_sampling_rate < MIN_STAT_SAMPLING_RATE)