From: "Rafael J. Wysocki" <rjw@rjwysocki.net>
To: Michael Turquette <mturquette@linaro.org>
Cc: peterz@infradead.org, mingo@kernel.org,
linux-kernel@vger.kernel.org, preeti@linux.vnet.ibm.com,
Morten.Rasmussen@arm.com, riel@redhat.com, efault@gmx.de,
nicolas.pitre@linaro.org, inaro-kernel@lists.linaro.org,
daniel.lezcano@linaro.org, patches@linaro.org,
eas-dev@lists.linaro.org, dietmar.eggemann@arm.com,
vincent.guittot@linaro.org, amit.kucheria@linaro.org,
juri.lelli@arm.com, viresh.kumar@linaro.org,
ashwin.chaugule@linaro.org, alex.shi@linaro.org
Subject: Re: [PATCH 0/4] scheduler-based cpu frequency scaling
Date: Tue, 05 May 2015 01:27:12 +0200 [thread overview]
Message-ID: <1648396.IQ1a4yUHOD@vostro.rjw.lan> (raw)
In-Reply-To: <1430777441-15087-1-git-send-email-mturquette@linaro.org>
On Monday, May 04, 2015 03:10:37 PM Michael Turquette wrote:
> This series implements an event-driven cpufreq governor that scales cpu
> frequency as a function of cfs runqueue utilization. The intent of this RFC is
> to get some discussion going about how the scheduler can become the policy
> engine for selecting cpu frequency, what limitations exist and what design do
> we want to take to get to a solution.
>
> This work is a different take on the patches I posted in November:
> http://lkml.kernel.org/r/<1413958051-7103-1-git-send-email-mturquette@linaro.org>
>
> This series depends on having frequency-invariant representations for load.
> This requires Vincent's recently merged cpu capacity rework patches, as well as
> a new patch from Morten included here. Morten's patch will likely make an
> appearance in his energy aware scheduling v4 series.
>
> Thanks to Juri Lelli <juri.lelli@arm.com> for contributing to the development
> of the governor.
>
> A git branch with these patches can be pulled from here:
> https://git.linaro.org/people/mike.turquette/linux.git sched-freq
>
> Smoke testing has been done on an OMAP4 Pandaboard and an Exynos 5800
> Chromebook2. Extensive benchmarking and regression testing has not yet been
> done. Before sinking too much time into extensive testing I'd like to get
> feedback on the general design.
>
> Michael Turquette (3):
> sched: sched feature for cpu frequency selection
> sched: export get_cpu_usage & capacity_orig_of
> sched: cpufreq_sched_cfs: PELT-based cpu frequency scaling
>
> Morten Rasmussen (1):
> arm: Frequency invariant scheduler load-tracking support
>
> arch/arm/include/asm/topology.h | 7 +
> arch/arm/kernel/smp.c | 53 ++++++-
> arch/arm/kernel/topology.c | 17 +++
> drivers/cpufreq/Kconfig | 24 ++++
> include/linux/cpufreq.h | 3 +
> kernel/sched/Makefile | 1 +
> kernel/sched/cpufreq_cfs.c | 311 ++++++++++++++++++++++++++++++++++++++++
> kernel/sched/fair.c | 48 +++----
> kernel/sched/features.h | 6 +
> kernel/sched/sched.h | 39 +++++
> 10 files changed, 475 insertions(+), 34 deletions(-)
> create mode 100644 kernel/sched/cpufreq_cfs.c
Can you *please* always CC PM-related patches to linux-pm?
--
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
next prev parent reply other threads:[~2015-05-04 23:02 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-04 22:10 Michael Turquette
2015-05-04 22:10 ` [PATCH 1/4] arm: Frequency invariant scheduler load-tracking support Michael Turquette
2015-05-04 22:10 ` [PATCH 2/4] sched: sched feature for cpu frequency selection Michael Turquette
2015-05-04 22:10 ` [PATCH 3/4] sched: export get_cpu_usage & capacity_orig_of Michael Turquette
2015-05-04 22:10 ` [PATCH 4/4] sched: cpufreq_cfs: pelt-based cpu frequency scaling Michael Turquette
2015-05-05 9:00 ` Peter Zijlstra
2015-05-05 12:16 ` Juri Lelli
[not found] ` <20150505182347.16410.16338@quantum>
2015-05-06 12:22 ` Peter Zijlstra
[not found] ` <20150507041725.16410.58417@quantum>
2015-05-07 6:23 ` Peter Zijlstra
2015-05-07 10:49 ` Juri Lelli
2015-05-07 14:25 ` Michael Turquette
2015-05-05 9:01 ` Peter Zijlstra
2015-05-05 9:04 ` Peter Zijlstra
2015-05-04 23:27 ` Rafael J. Wysocki [this message]
2015-05-05 18:28 ` [PATCH 0/4] scheduler-based " Mike Turquette
2015-05-06 16:50 ` [PATCH] sched/core: Add empty 'gov_cfs_update_cpu' function definition for NON-SMP systems Abel Vesa
2015-05-07 4:18 ` Michael Turquette
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1648396.IQ1a4yUHOD@vostro.rjw.lan \
--to=rjw@rjwysocki.net \
--cc=Morten.Rasmussen@arm.com \
--cc=alex.shi@linaro.org \
--cc=amit.kucheria@linaro.org \
--cc=ashwin.chaugule@linaro.org \
--cc=daniel.lezcano@linaro.org \
--cc=dietmar.eggemann@arm.com \
--cc=eas-dev@lists.linaro.org \
--cc=efault@gmx.de \
--cc=inaro-kernel@lists.linaro.org \
--cc=juri.lelli@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=mturquette@linaro.org \
--cc=nicolas.pitre@linaro.org \
--cc=patches@linaro.org \
--cc=peterz@infradead.org \
--cc=preeti@linux.vnet.ibm.com \
--cc=riel@redhat.com \
--cc=vincent.guittot@linaro.org \
--cc=viresh.kumar@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®