From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752401AbaEMEjC (ORCPT ); Tue, 13 May 2014 00:39:02 -0400 Received: from mga02.intel.com ([134.134.136.20]:34560 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751284AbaEMEjB (ORCPT ); Tue, 13 May 2014 00:39:01 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,1041,1389772800"; d="scan'208";a="510683875" Date: Tue, 13 May 2014 04:34:16 +0800 From: Yuyang Du To: Stratos Karafotis Cc: Dirk Brandewie , "Rafael J. Wysocki" , Viresh Kumar , Dirk Brandewie , "linux-pm@vger.kernel.org" , LKML , Doug Smythies Subject: Re: [RFC PATCH] cpufreq: intel_pstate: Change the calculation of next pstate Message-ID: <20140512203416.GB10676@intel.com> References: <5368255D.3090207@semaphore.gr> <536BEE89.3040602@gmail.com> <536CECB4.1090109@semaphore.gr> <53712F4B.7000101@semaphore.gr> <20140512193453.GB9351@intel.com> <537198AE.3050100@semaphore.gr> <20140512200140.GA10676@intel.com> <53719C98.1010103@semaphore.gr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <53719C98.1010103@semaphore.gr> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, May 13, 2014 at 07:16:24AM +0300, Stratos Karafotis wrote: > On 12/05/2014 11:01 μμ, Yuyang Du wrote: > > On Tue, May 13, 2014 at 06:59:42AM +0300, Stratos Karafotis wrote: > >> Hi, > >> > >> On 12/05/2014 10:34 μμ, Yuyang Du wrote: > >>> On Mon, May 12, 2014 at 11:30:03PM +0300, Stratos Karafotis wrote: > >>>> On 09/05/2014 05:56 μμ, Stratos Karafotis wrote: > >>>> > >>>> Next performance state = min_perf + (max_perf - min_perf) * load / 100 > >>>> > >>> Hi, > >>> > >>> This formula is fundamentally broken. You need to associate the load with its > >>> frequency. > >> > >> Could you please explain why is it broken? I think the load should be > >> independent from the current frequency. > > > > Why independent? The load not (somewhat) determined by that? > > > > > > Maybe, in some cases yes. But not always. > For example, please consider a CPU running a tight "for" loop in 100MHz > for a couple of seconds. This produces a load of 100%. > It will produce the same load (100%) in any other frequency. Still fundamentally wrong, because you are not making a fair comparison ("load" in 100MHz vs. any other freq). Yuyang