From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758763AbcKDJqs (ORCPT ); Fri, 4 Nov 2016 05:46:48 -0400 Received: from mail-pf0-f170.google.com ([209.85.192.170]:32980 "EHLO mail-pf0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751154AbcKDJqq (ORCPT ); Fri, 4 Nov 2016 05:46:46 -0400 Date: Fri, 4 Nov 2016 15:16:42 +0530 From: Viresh Kumar To: Patrick Bellasi Cc: linux-kernel@vger.kernel.org, Ingo Molnar , Peter Zijlstra , Vincent Guittot , Steve Muckle , Leo Yan , "Rafael J . Wysocki" , Todd Kjos , Srinath Sridharan , Andres Oportus , Juri Lelli , Morten Rasmussen , Dietmar Eggemann , Chris Redpath , Robin Randhawa , Jonathan Corbet , linux-doc@vger.kernel.org Subject: Re: [RFC v2 1/8] sched/tune: add detailed documentation Message-ID: <20161104094642.GF3414@vireshk-i7> References: <20161027174108.31139-1-patrick.bellasi@arm.com> <20161027174108.31139-2-patrick.bellasi@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20161027174108.31139-2-patrick.bellasi@arm.com> 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 On 27-10-16, 18:41, Patrick Bellasi wrote: > +This last requirement is especially important if we consider that schedutil can > +potentially replace all currently available CPUFreq policies. Since schedutil > +is event based, as opposed to the sampling driven governors, it is already more > +responsive at selecting the optimal OPP to run tasks allocated to a CPU. I am not sure if I follow this paragraph. All the governors follow the same basic rules now. They are all event driven (events from scheduler), but they function only after a certain sampling period is finished. Isn't this the case ? > +SchedTune exposes a simple user-space interface with a single power-performance > +tunable: > + > + /proc/sys/kernel/sched_cfs_boost > + > +This permits expressing a boost value as an integer in the range [0..100]. > + > +A value of 0 (default) for a CFS task means that schedutil will attempt > +to match compute capacity of the CPU where the task is scheduled to > +match its current utilization with a few spare cycles left. A value of > +100 means that schedutil will select the highest available OPP. > + > +The range between 0 and 100 can be set to satisfy other scenarios suitably. > +For example to satisfy interactive response or depending on other system events > +(battery level, thermal status, etc). Earlier section said that schedutil+schedtune can replace all earlier governors. How will schedutil behave like powersave governor with schedtune? I was expecting the possible values of sched_cfs_boost to be in the range -100 to 100, where -100 will make it powersave, +100 will make it performance and 0 will not make any changes. -- viresh