Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933889AbdC3NWV (ORCPT ); Thu, 30 Mar 2017 09:22:21 -0400 Received: from mail-io0-f174.google.com ([209.85.223.174]:36361 "EHLO mail-io0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933853AbdC3NWT (ORCPT ); Thu, 30 Mar 2017 09:22:19 -0400 MIME-Version: 1.0 In-Reply-To: <20170330085805.GF18960@e106622-lin> References: <20170324140900.7334-1-juri.lelli@arm.com> <20170324140900.7334-5-juri.lelli@arm.com> <2348394.hDdCk9fbgK@aspire.rjw.lan> <20170330085805.GF18960@e106622-lin> From: Vincent Guittot Date: Thu, 30 Mar 2017 15:21:57 +0200 Message-ID: Subject: Re: [RFD PATCH 4/5] sched/cpufreq_schedutil: always consider all CPUs when deciding next freq To: Juri Lelli Cc: "Rafael J. Wysocki" , Peter Zijlstra , "mingo@redhat.com" , viresh kumar , linux-kernel , "linux-pm@vger.kernel.org" , Thomas Gleixner , Steven Rostedt , Luca Abeni , claudio@evidence.eu.com, Tommaso Cucinotta , bristot@redhat.com, Mathieu Poirier , Todd Kjos , Joel Fernandes , Andres Oportus , Morten Rasmussen , Dietmar Eggemann , Patrick Bellasi , Ingo Molnar Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1277 Lines: 36 On 30 March 2017 at 10:58, Juri Lelli wrote: > Hi, > > On 30/03/17 00:41, Rafael J. Wysocki wrote: >> On Friday, March 24, 2017 02:08:59 PM Juri Lelli wrote: >> > No assumption can be made upon the rate at which frequency updates get >> > triggered, as there are scheduling policies (like SCHED_DEADLINE) which >> > don't trigger them so frequently. >> > >> > Remove such assumption from the code. >> >> But the util/max values for idle CPUs may be stale, no? >> > > Right, that might be a problem. A proper solution I think would be to > remotely update such values for idle CPUs, and I believe Vincent is > working on a patch for that. Yes. I'm working on a patch that will regularly update the blocked load/utilization of idle CPU. This update will be done on a slow pace to make sure that utilization and load will be decayed regularly > > As mid-term workarounds, changing a bit the current one, come to my > mind: > > - consider TICK_NSEC (continue) only when SCHED_CPUFREQ_DL is not set > - remove CFS contribution (without triggering a freq update) when a CPU > enters IDLE; this might not work well, though, as we probably want > to keep in blocked util contribution for a bit > > What you think is the way to go? > > Thanks, > > - Juri