From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752569AbcEKRIv (ORCPT ); Wed, 11 May 2016 13:08:51 -0400 Received: from cloudserver094114.home.net.pl ([79.96.170.134]:47710 "HELO cloudserver094114.home.net.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1751711AbcEKRIs (ORCPT ); Wed, 11 May 2016 13:08:48 -0400 From: "Rafael J. Wysocki" To: Linux PM list , Srinivas Pandruvada Cc: Linux Kernel Mailing List Subject: [PATCH v2, 2/3] intel_pstate: Use sample.core_avg_perf in get_avg_pstate() Date: Wed, 11 May 2016 19:10:42 +0200 Message-ID: <1556570.uqd2QqlgcU@vostro.rjw.lan> User-Agent: KMail/4.11.5 (Linux/4.5.0-rc1+; KDE/4.11.5; x86_64; ; ) In-Reply-To: <4400018.TlI4RAhtYU@vostro.rjw.lan> References: <2638272.Bq3MnQEe4U@vostro.rjw.lan> <4400018.TlI4RAhtYU@vostro.rjw.lan> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="utf-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Rafael J. Wysocki Notice that get_avg_pstate() can use sample.core_avg_perf instead of carrying the same division again, so make it do that. Signed-off-by: Rafael J. Wysocki --- v1 -> v2: Use mul_ext_fp() to carry out the computation in get_avg_pstate(). --- drivers/cpufreq/intel_pstate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: linux-pm/drivers/cpufreq/intel_pstate.c =================================================================== --- linux-pm.orig/drivers/cpufreq/intel_pstate.c +++ linux-pm/drivers/cpufreq/intel_pstate.c @@ -1213,8 +1213,8 @@ static inline int32_t get_avg_frequency( static inline int32_t get_avg_pstate(struct cpudata *cpu) { - return div64_u64(cpu->pstate.max_pstate_physical * cpu->sample.aperf, - cpu->sample.mperf); + return mul_ext_fp(cpu->pstate.max_pstate_physical, + cpu->sample.core_avg_perf); } static inline int32_t get_target_pstate_use_cpu_load(struct cpudata *cpu)