Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752992AbdGFF5A (ORCPT ); Thu, 6 Jul 2017 01:57:00 -0400 Received: from mail-pg0-f51.google.com ([74.125.83.51]:35366 "EHLO mail-pg0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752694AbdGFF46 (ORCPT ); Thu, 6 Jul 2017 01:56:58 -0400 Date: Thu, 6 Jul 2017 11:26:55 +0530 From: Viresh Kumar To: Patrick Bellasi Cc: linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, Ingo Molnar , Peter Zijlstra , "Rafael J . Wysocki" , Vincent Guittot , Juri Lelli , Joel Fernandes , Andres Oportus , Todd Kjos , Morten Rasmussen , Dietmar Eggemann , Steve Muckle , Brendan Jackman Subject: Re: [PATCH v2 3/6] cpufreq: schedutil: ensure max frequency while running RT/DL tasks Message-ID: <20170706055655.GR3532@vireshk-i7> References: <1499189651-18797-1-git-send-email-patrick.bellasi@arm.com> <1499189651-18797-4-git-send-email-patrick.bellasi@arm.com> <20170705060136.GO3532@vireshk-i7> <20170705134126.GD2659@e110439-lin> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170705134126.GD2659@e110439-lin> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2679 Lines: 68 On 05-07-17, 14:41, Patrick Bellasi wrote: > On 05-Jul 11:31, Viresh Kumar wrote: > Just had a fast check but I think something like that can work. > We had an internal discussion with Brendan (in CC now) which had a > similar proposal. > > Main counter arguments for me was: > 1. we wanna to reduce the pollution of scheduling classes code with > schedutil specific code, unless strictly necessary s/schedutil/cpufreq, as the util hooks are getting called for some other stuff as well. > 2. we never had a "clear bit" semantics for flags updates > > Thus this proposal seemed to me less of a discontinuity wrt the > current interface. However, something similar to what you propose > below should also work. With the kind of problems we have in hand now, it seems that it would be good for the governors to know what kind of stuff is queued on the CPU (i.e. the aggregation of all the flags) and the only sane way of doing that is by clearing the flag once a class is done with it. Else we would be required to have code that tries to find the same information in an indirect way, like what this patch does with the current task. > Let's collect some more feedback... Sure. > > diff --git a/include/linux/sched/cpufreq.h b/include/linux/sched/cpufreq.h > > index d2be2ccbb372..e81a6b5591f5 100644 > > --- a/include/linux/sched/cpufreq.h > > +++ b/include/linux/sched/cpufreq.h > > @@ -11,6 +11,10 @@ > > #define SCHED_CPUFREQ_DL (1U << 1) > > #define SCHED_CPUFREQ_IOWAIT (1U << 2) > > > > +#define SCHED_CPUFREQ_CLEAR (1U << 31) > > +#define SCHED_CPUFREQ_CLEAR_RT (SCHED_CPUFREQ_CLEAR | SCHED_CPUFREQ_RT) > > +#define SCHED_CPUFREQ_CLEAR_DL (SCHED_CPUFREQ_CLEAR | SCHED_CPUFREQ_DL) > > + > > #define SCHED_CPUFREQ_RT_DL (SCHED_CPUFREQ_RT | SCHED_CPUFREQ_DL) > > > > #ifdef CONFIG_CPU_FREQ > > diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c > > index 076a2e31951c..f32e15d59d62 100644 > > --- a/kernel/sched/cpufreq_schedutil.c > > +++ b/kernel/sched/cpufreq_schedutil.c > > @@ -218,6 +218,9 @@ static void sugov_update_single(struct update_util_data *hook, u64 time, > > unsigned int next_f; > > bool busy; > > > > + if (flags & SCHED_CPUFREQ_CLEAR) > > + return; > > Here we should still clear the flags, like what we do for the shared > case... just to keep the internal status consiste with the > notifications we have got from the scheduling classes. The sg_cpu->flags field isn't used currently for the single CPU per policy case, but only for shared policies. But yes, we need to maintain that here now as well to know what all is queued on a CPU. -- viresh