From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754668Ab3EaKwR (ORCPT ); Fri, 31 May 2013 06:52:17 -0400 Received: from mail-ea0-f178.google.com ([209.85.215.178]:50757 "EHLO mail-ea0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751814Ab3EaKwI (ORCPT ); Fri, 31 May 2013 06:52:08 -0400 Date: Fri, 31 May 2013 12:52:04 +0200 From: Ingo Molnar To: Morten Rasmussen Cc: alex.shi@intel.com, peterz@infradead.org, preeti@linux.vnet.ibm.com, vincent.guittot@linaro.org, efault@gmx.de, pjt@google.com, linux-kernel@vger.kernel.org, linaro-kernel@lists.linaro.org, arjan@linux.intel.com, len.brown@intel.com, corbet@lwn.net, Andrew Morton , Linus Torvalds , tglx@linutronix.de Subject: power-efficient scheduling design Message-ID: <20130531105204.GE30394@gmail.com> References: <20130530134718.GB32728@e103034-lin> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130530134718.GB32728@e103034-lin> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Morten Rasmussen wrote: > Hi, > > A number of patch sets related to power-efficient scheduling have been > posted over the last couple of months. Most of them do not have much > data to back them up, so I decided to do some testing. Thanks, numbers are always welcome! > Measurement technique: > Time spent non-idle (not in idle state) for each cpu based on cpuidle > ftrace events. TC2 does not have per-core power-gating, so packing > inside the A7 cluster does not lead to any significant power savings. > Note that any product grade hardware (TC2 is a test-chip) will very > likely have per-core power-gating, so in those cases packing will have > an appreciable effect on power savings. > Measuring non-idle time rather than power should give a more clear idea > about the effect of the patch sets given that the idle back-end is > highly implementation specific. Note that I still disagree with the whole design notion of having an "idle back-end" (and a 'cpufreq back end') separate from scheduler power saving policy, and none of the patch-sets offered so far solve this fundamental design problem. PeterZ and me tried to point out the design requirements previously, but it still does not appear to be clear enough to people, so let me spell it out again, in a hopefully clearer fashion. The scheduler has valuable power saving information available: - when a CPU is busy: about how long the current task expects to run - when a CPU is idle: how long the current CPU expects _not_ to run - topology: it knows how the CPUs and caches interrelate and already optimizes based on that - various high level and low level load averages and other metrics about the recent past that show how busy a particular CPU is, how busy the whole system is, and what the runtime properties of individual tasks is (how often it sleeps, etc.) so the scheduler is in an _ideal_ position to do a judgement call about the near future and estimate how deep an idle state a CPU core should enter into and what frequency it should run at. The scheduler is also at a high enough level to host a "I want maximum performance, power does not matter to me" user policy override switch and similar user policy details. No ifs and whens about that. Today the power saving landscape is fragmented and sad: we just randomly interface scheduler task packing changes with some idle policy (and cpufreq policy), which might or might not combine correctly. Even when the numbers improve, it's an entirely random, essentially unmaintainable property: because there's no clear split (possible) between 'scheduler policy' and 'idle policy'. This is why we removed the old, broken power saving scheduler code a year ago: to make room for something _better_. So if we want to add back scheduler power saving then what should happen is genuinely better code: To create a new low level idle driver mechanism the scheduler could use and integrate proper power saving / idle policy into the scheduler. In that power saving framework the already existing scheduler topology information should be extended with deep idle parameters: - enumeration of idle states - how long it takes to enter+exit a particular idle state - [ perhaps information about how destructive to CPU caches that particular idle state is. ] - new driver entry point that allows the scheduler to enter any of the enumerated idle states. Platform code will not change this state, all policy decisions and the idle state is decided at the power saving policy level. All of this combines into a 'cost to enter and exit an idle state' estimation plus a way to enter idle states. It should be presented to the scheduler in a platform independent fashion, but without policy embedded: a low level platform driver interface in essence. Thomas Gleixner's recent work to generalize platform idle routines will further help the implementation of this. (that code is upstream already) _All_ policy, all metrics, all averaging should happen at the scheduler power saving level, in a single place, and then the scheduler should directly drive the new low level idle state driver mechanism. 'scheduler power saving' and 'idle policy' are one and the same principle and they should be handled in a single place to offer the best power saving results. Note that any RFC patch-set that offers an implementation for this could be structured in a gradual fashion: only implementing it for a limited CPU range initially. The new framework can then be extended to more and more CPUs and architectures, incorporating more complicated power saving features gradually. (The old, existing idle policy code would remain untouched and available - it would simply not be used when the new policy is activated.) I.e. I'm not asking for a 'rewrite the world' kind of impossible task - I'm providing an actionable path to get improved power saving upstream, but it has to use a _sane design_. This is a "line in the sand", a 'must have' design property for any scheduler power saving patches to be acceptable - and I'm NAK-ing incomplete approaches that don't solve the root design cause of our power saving troubles... Thanks, Ingo