From: Peter Zijlstra <peterz@infradead.org>
To: Vincent Guittot <vincent.guittot@linaro.org>
Cc: linux-kernel@vger.kernel.org, linaro-kernel@lists.linaro.org,
mingo@kernel.org, pjt@google.com, rostedt@goodmis.org,
fweisbec@gmail.com, efault@gmx.de
Subject: Re: [PATCH v4] sched: fix wrong rq's runnable_avg update with rt tasks
Date: Tue, 09 Apr 2013 10:50:06 +0200 [thread overview]
Message-ID: <1365497406.2609.162.camel@laptop> (raw)
In-Reply-To: <1365084959-28374-1-git-send-email-vincent.guittot@linaro.org>
On Thu, 2013-04-04 at 16:15 +0200, Vincent Guittot wrote:
> Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
> ---
> kernel/sched/fair.c | 23 +++++++++++++++++++++--
> kernel/sched/idle_task.c | 10 ++++++++++
> kernel/sched/sched.h | 12 ++++++++++++
> 3 files changed, 43 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> index 0fcdbff..1851ca8 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -1562,6 +1562,27 @@ static inline void
> dequeue_entity_load_avg(struct cfs_rq *cfs_rq,
> se->avg.decay_count =
> atomic64_read(&cfs_rq->decay_counter);
> } /* migrations, e.g. sleep=0 leave decay_count == 0 */
> }
> +
> +/*
> + * Update the rq's load with the elapsed running time before entering
> + * idle. if the last scheduled task is not a CFS task, idle_enter
> will
> + * be the only way to update the runnable statistic.
> + */
> +void idle_enter(struct rq *this_rq)
> +{
> + update_rq_runnable_avg(this_rq, 1);
> +}
> +
> +/*
> + * Update the rq's load with the elapsed idle time before a task is
> + * scheduled. if the newly scheduled task is not a CFS task,
> idle_exit will
> + * be the only way to update the runnable statistic.
> + */
> +void idle_exit(struct rq *this_rq)
> +{
> + update_rq_runnable_avg(this_rq, 0);
> +}
These seem like fairly unfortunate names to expose to the global
namespace, why not expose update_rq_runnable_avg() instead?
next prev parent reply other threads:[~2013-04-09 8:50 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-04 14:15 Vincent Guittot
2013-04-09 8:50 ` Peter Zijlstra [this message]
2013-04-09 9:06 ` Vincent Guittot
2013-04-10 7:26 ` Peter Zijlstra
2013-04-10 7:59 ` Vincent Guittot
2013-04-09 8:55 ` Peter Zijlstra
2013-04-09 12:18 ` Vincent Guittot
2013-04-09 13:16 ` Steven Rostedt
2013-04-09 14:05 ` Vincent Guittot
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=1365497406.2609.162.camel@laptop \
--to=peterz@infradead.org \
--cc=efault@gmx.de \
--cc=fweisbec@gmail.com \
--cc=linaro-kernel@lists.linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=pjt@google.com \
--cc=rostedt@goodmis.org \
--cc=vincent.guittot@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
Powered by JetHome