From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752509AbeFDKMx (ORCPT ); Mon, 4 Jun 2018 06:12:53 -0400 Received: from mail-wm0-f65.google.com ([74.125.82.65]:39088 "EHLO mail-wm0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751989AbeFDKMw (ORCPT ); Mon, 4 Jun 2018 06:12:52 -0400 X-Google-Smtp-Source: ADUXVKKblgbrJlMUHKYzUxvq8MybD7Qtderu/i4ZTwYh3iNRvDKfGcNpLYO/e80T7zRalb4VijMTMA== Date: Mon, 4 Jun 2018 12:12:47 +0200 From: Juri Lelli To: Vincent Guittot Cc: Joel Fernandes , Patrick Bellasi , Peter Zijlstra , Ingo Molnar , linux-kernel , "Rafael J. Wysocki" , Dietmar Eggemann , Morten Rasmussen , viresh kumar , Valentin Schneider , Quentin Perret , Luca Abeni , Claudio Scordino , Joel Fernandes , "Cc: Android Kernel" , Alessio Balsini Subject: Re: [PATCH v5 05/10] cpufreq/schedutil: get max utilization Message-ID: <20180604101247.GB2731@localhost.localdomain> References: <20180528152243.GD1293@localhost.localdomain> <20180531102735.GM30654@e110439-lin> <20180601135307.GA28550@linaro.org> <20180601174526.GA105687@joelaf.mtv.corp.google.com> <20180604070438.GA2731@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.2 (2017-12-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 04/06/18 09:14, Vincent Guittot wrote: > On 4 June 2018 at 09:04, Juri Lelli wrote: > > Hi Vincent, > > > > On 04/06/18 08:41, Vincent Guittot wrote: > >> On 1 June 2018 at 19:45, Joel Fernandes wrote: > >> > On Fri, Jun 01, 2018 at 03:53:07PM +0200, Vincent Guittot wrote: > > > > [...] > > > >> > IMO I feel its overkill to account dl_avg when we already have DL's running > >> > bandwidth we can use. I understand it may be too instanenous, but perhaps we > >> > >> We keep using dl bandwidth which is quite correct for dl needs but > >> doesn't reflect how it has disturbed other classes > >> > >> > can fix CFS's problems within CFS itself and not have to do this kind of > >> > extra external accounting ? > > > > I would also keep accounting for waiting time due to higher prio classes > > all inside CFS. My impression, when discussing it with you on IRC, was > > that we should be able to do that by not decaying cfs.util_avg when CFS > > is preempted (creating a new signal for it). Is not this enough? > > We don't just want to not decay a signal but increase the signal to > reflect the amount of preemption OK. > Then, we can't do that in a current signal. So you would like to add > another metrics in cfs_rq ? Since it's CFS related, I'd say it should fit in CFS. > The place doesn't really matter to be honest in cfs_rq or in dl_rq but > you will not prevent to add call in dl class to start/stop the > accounting of the preemption > > > > > I feel we should try to keep cross-class accounting/interaction at a > > minimum. > > accounting for cross class preemption can't be done without > cross-class accounting Mmm, can't we distinguish in, say, pick_next_task_fair() if prev was of higher prio class and act accordingly? Thanks, - Juri