Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1273415
| From | Prarit Bhargava <prarit@redhat.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] cpufreq, intel_pstate.c, Fix rounding errors |
| Date | 2015-11-19 20:10 +0100 |
| Message-ID | <qwCKK-549-23@gated-at.bofh.it> (permalink) |
| References | <qwdjl-4US-33@gated-at.bofh.it> <qwpkt-4yB-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 11/18/2015 11:46 PM, Viresh Kumar wrote:
> On 18-11-15, 10:55, Prarit Bhargava wrote:
>> diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
>> index 2e31d09..686f024 100644
>> --- a/drivers/cpufreq/intel_pstate.c
>> +++ b/drivers/cpufreq/intel_pstate.c
>> @@ -1233,6 +1233,8 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy)
>> struct cpudata *cpu;
>> int i;
>> #endif
>> + int max_policy_calc;
>> +
>> pr_debug("intel_pstate: %s max %u policy->max %u\n", __func__,
>> policy->cpuinfo.max_freq, policy->max);
>> if (!policy->cpuinfo.max_freq)
>> @@ -1249,7 +1251,10 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy)
>> limits = &powersave_limits;
>> limits->min_policy_pct = (policy->min * 100) / policy->cpuinfo.max_freq;
>> limits->min_policy_pct = clamp_t(int, limits->min_policy_pct, 0 , 100);
>> - limits->max_policy_pct = (policy->max * 100) / policy->cpuinfo.max_freq;
>> +
>> + max_policy_calc = (policy->max * 1000) / policy->cpuinfo.max_freq;
>> + limits->max_policy_pct = DIV_ROUND_UP(max_policy_calc, 10);
>> +
>
> Nice catch, but why can't we do this instead:
>
> limits->max_policy_pct = DIV_ROUND_UP(policy->max * 100, policy->cpuinfo.max_freq);
>
Ah, I got so deep into the code I didn't even think of simplifying the
calculation. Thanks -- I'll do that instead.
>> limits->max_policy_pct = clamp_t(int, limits->max_policy_pct, 0 , 100);
>>
>> /* Normalize user input to [min_policy_pct, max_policy_pct] */
>> @@ -1269,6 +1274,7 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy)
>> int_tofp(100));
>> limits->max_perf = div_fp(int_tofp(limits->max_perf_pct),
>> int_tofp(100));
>> + limits->max_perf = round_up(limits->max_perf, 8);
>
> Perhaps you should fix this in a separate patch.
>
Okay, I submit these as a 2 part patchset.
P.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] cpufreq, intel_pstate.c, Fix rounding errors Prarit Bhargava <prarit@redhat.com> - 2015-11-18 17:00 +0100
Re: [PATCH] cpufreq, intel_pstate.c, Fix rounding errors Viresh Kumar <viresh.kumar@linaro.org> - 2015-11-19 05:50 +0100
Re: [PATCH] cpufreq, intel_pstate.c, Fix rounding errors Prarit Bhargava <prarit@redhat.com> - 2015-11-19 20:10 +0100
csiph-web