LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Valentin Schneider <valentin.schneider@arm.com>
To: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: peterz@infradead.org, mingo@redhat.com, juri.lelli@redhat.com,
vincent.guittot@linaro.org, dietmar.eggemann@arm.com,
rostedt@goodmis.org, bsegall@google.com,
linux-kernel@vger.kernel.org, qais.yousef@arm.com
Subject: Re: [PATCH V2] sched: fair: Use the earliest break even
Date: Tue, 17 Mar 2020 10:56:11 +0000 [thread overview]
Message-ID: <jhjy2rzntbo.mognet@arm.com> (raw)
In-Reply-To: <20200311202625.13629-1-daniel.lezcano@linaro.org>
Hi Daniel,
One more comment on the break even itself, ignoring the rest:
On Wed, Mar 11 2020, Daniel Lezcano wrote:
> diff --git a/kernel/sched/idle.c b/kernel/sched/idle.c
> index b743bf38f08f..3342e7bae072 100644
> --- a/kernel/sched/idle.c
> +++ b/kernel/sched/idle.c
> @@ -19,7 +19,13 @@ extern char __cpuidle_text_start[], __cpuidle_text_end[];
> */
> void sched_idle_set_state(struct cpuidle_state *idle_state)
> {
> - idle_set_state(this_rq(), idle_state);
> + struct rq *rq = this_rq();
> +
> + idle_set_state(rq, idle_state);
> +
> + if (idle_state)
> + idle_set_break_even(rq, ktime_get_ns() +
> + idle_state->exit_latency_ns);
I'm not sure I follow why we go for entry time + exit latency. If this
is based on the minimum residency, shouldn't this be something depending
on the entry latency? i.e. something like
break_even = now + entry_latency + idling_time
\_________________________/
min-residency
or am I missing something?
> }
>
> static int __read_mostly cpu_idle_force_poll;
next prev parent reply other threads:[~2020-03-17 10:56 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-11 20:26 Daniel Lezcano
2020-03-12 8:36 ` Vincent Guittot
2020-03-12 10:04 ` Daniel Lezcano
2020-03-12 12:27 ` Vincent Guittot
2020-03-13 12:15 ` Daniel Lezcano
2020-03-13 13:15 ` Vincent Guittot
2020-03-13 13:17 ` Daniel Lezcano
2020-03-13 13:21 ` Vincent Guittot
2020-03-17 7:56 ` Morten Rasmussen
2020-03-17 13:48 ` Daniel Lezcano
2020-03-17 14:30 ` Morten Rasmussen
2020-03-17 17:07 ` Daniel Lezcano
2020-03-18 8:24 ` Morten Rasmussen
2020-03-18 10:17 ` Daniel Lezcano
2020-03-18 14:38 ` Morten Rasmussen
2020-03-18 7:51 ` Vincent Guittot
2020-03-18 8:33 ` Morten Rasmussen
2020-03-17 10:56 ` Valentin Schneider [this message]
2020-03-17 13:59 ` Daniel Lezcano
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=jhjy2rzntbo.mognet@arm.com \
--to=valentin.schneider@arm.com \
--cc=bsegall@google.com \
--cc=daniel.lezcano@linaro.org \
--cc=dietmar.eggemann@arm.com \
--cc=juri.lelli@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=qais.yousef@arm.com \
--cc=rostedt@goodmis.org \
--cc=vincent.guittot@linaro.org \
--subject='Re: [PATCH V2] sched: fair: Use the earliest break even' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).