From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Zijlstra Subject: Re: [PATCH v7 02/15] sched/core: uclamp: Enforce last task UCLAMP_MAX Date: Wed, 13 Mar 2019 18:29:11 +0100 Message-ID: <20190313172911.GH5996@hirez.programming.kicks-ass.net> References: <20190208100554.32196-1-patrick.bellasi@arm.com> <20190208100554.32196-3-patrick.bellasi@arm.com> <20190313141008.GF5922@hirez.programming.kicks-ass.net> <20190313162051.djiu5dwc5ahp5p5p@e110439-lin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20190313162051.djiu5dwc5ahp5p5p@e110439-lin> Sender: linux-kernel-owner@vger.kernel.org To: Patrick Bellasi Cc: linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, linux-api@vger.kernel.org, Ingo Molnar , Tejun Heo , "Rafael J . Wysocki" , Vincent Guittot , Viresh Kumar , Paul Turner , Quentin Perret , Dietmar Eggemann , Morten Rasmussen , Juri Lelli , Todd Kjos , Joel Fernandes , Steve Muckle , Suren Baghdasaryan List-Id: linux-api@vger.kernel.org On Wed, Mar 13, 2019 at 04:20:51PM +0000, Patrick Bellasi wrote: > On 13-Mar 15:10, Peter Zijlstra wrote: > > On Fri, Feb 08, 2019 at 10:05:41AM +0000, Patrick Bellasi wrote: > > > +uclamp_idle_value(struct rq *rq, unsigned int clamp_id, unsigned int clamp_value) > > > +{ > > > + /* > > > + * Avoid blocked utilization pushing up the frequency when we go > > > + * idle (which drops the max-clamp) by retaining the last known > > > + * max-clamp. > > > + */ > > > + if (clamp_id == UCLAMP_MAX) { > > > + rq->uclamp_flags |= UCLAMP_FLAG_IDLE; > > > + return clamp_value; > > > + } > > > + > > > + return uclamp_none(UCLAMP_MIN); > > > > That's a very complicated way or writing: return 0, right? > > In my mind it's just a simple way to hardcode values in just one place. > > In the current implementation uclamp_none(UCLAMP_MIN) is 0 and the > compiler is not in trubles to inline a 0 there. > > Is it really so disgusting ? Not disguisting per se, just complicated. It had me go back and check wth uclamp_none() did again.