From mboxrd@z Thu Jan 1 00:00:00 1970 From: Viresh Kumar Subject: Re: [PATCH] Revert "cpufreq: governor: Fix negative idle_time when configured with CONFIG_HZ_PERIODIC" Date: Fri, 22 Apr 2016 09:03:07 +0530 Message-ID: <20160422033307.GQ29799@vireshk-i7> References: <8912976.5IbnMFmJ9d@vostro.rjw.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mail-pf0-f173.google.com ([209.85.192.173]:36772 "EHLO mail-pf0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752610AbcDVDdL (ORCPT ); Thu, 21 Apr 2016 23:33:11 -0400 Received: by mail-pf0-f173.google.com with SMTP id e128so36429024pfe.3 for ; Thu, 21 Apr 2016 20:33:10 -0700 (PDT) Content-Disposition: inline In-Reply-To: <8912976.5IbnMFmJ9d@vostro.rjw.lan> Sender: linux-pm-owner@vger.kernel.org List-Id: linux-pm@vger.kernel.org To: "Rafael J. Wysocki" Cc: Linux PM list , Linux Kernel Mailing List , Chen Yu , Timo Valtoaho On 21-04-16, 20:57, Rafael J. Wysocki wrote: > From: Rafael J. Wysocki > > Revert commit 0df35026c6a5 (cpufreq: governor: Fix negative idle_time > when configured with CONFIG_HZ_PERIODIC) that introduced a regression > by causing the ondemand cpufreq governor to misbehave for > CONFIG_TICK_CPU_ACCOUNTING unset (the frequency goes up to the max at > one point and stays there indefinitely). > > The revert takes subsequent modifications of the code in question into > account. > > Fixes: 0df35026c6a5 (cpufreq: governor: Fix negative idle_time when configured with CONFIG_HZ_PERIODIC) > Link: https://bugzilla.kernel.org/show_bug.cgi?id=115261 > Reported-and-tested-by: Timo Valtoaho > Cc: 4.5+ # 4.5+ > Signed-off-by: Rafael J. Wysocki > --- > drivers/cpufreq/cpufreq_governor.c | 8 ++------ > 1 file changed, 2 insertions(+), 6 deletions(-) > > Index: linux-pm/drivers/cpufreq/cpufreq_governor.c > =================================================================== > --- linux-pm.orig/drivers/cpufreq/cpufreq_governor.c > +++ linux-pm/drivers/cpufreq/cpufreq_governor.c > @@ -146,12 +146,8 @@ unsigned int dbs_update(struct cpufreq_p > wall_time = cur_wall_time - j_cdbs->prev_cpu_wall; > j_cdbs->prev_cpu_wall = cur_wall_time; > > - if (cur_idle_time <= j_cdbs->prev_cpu_idle) { > - idle_time = 0; > - } else { > - idle_time = cur_idle_time - j_cdbs->prev_cpu_idle; > - j_cdbs->prev_cpu_idle = cur_idle_time; > - } > + idle_time = cur_idle_time - j_cdbs->prev_cpu_idle; > + j_cdbs->prev_cpu_idle = cur_idle_time; > > if (ignore_nice) { > u64 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE]; Acked-by: Viresh Kumar -- viresh