From: Cheng Xu <chengxu@linux.vnet.ibm.com>
To: Yong Zhang <yong.zhang0@gmail.com>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@elte.hu>, Mike Galbraith <efault@gmx.de>
Subject: Re: [PATCH V2] sched: skip autogroup when looking for all rt sched groups
Date: Thu, 30 Jun 2011 11:33:03 +0800 [thread overview]
Message-ID: <4E0BEE6F.3090802@linux.vnet.ibm.com> (raw)
In-Reply-To: <BANLkTi=87P3RoTF_UEtamNfc_XGxQXE__Q@mail.gmail.com>
On 06/28/2011 10:51 AM, Yong Zhang wrote:
> From: Yong Zhang <yong.zhang0@gmail.com>
> Subject: [PATCH V2] sched: skip autogroup when looking for all rt sched groups
>
> Since [commit ec514c48: sched: Fix rt_rq runtime leakage bug],
> 'cat /proc/sched_debug' will print data of root_task_group.rt_rq
> multi times, this is due to autogroup has no its own rt group,
> instead rt group of autogroup is linked to root_task_group.
>
> So skip it when we are looking for all rt sched groups, and it
> will also save some noop operation against root_task_group when
> __disable_runtime()/__enable_runtime().
>
> V2: Based on Cheng Xu's idea which uses less code.
>
> Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
> Cc: Ingo Molnar <mingo@elte.hu>
> Cc: Peter Zijlstra <peterz@infradead.org>
> Cc: Mike Galbraith <efault@gmx.de>
> Cc: Cheng Xu <chengxu@linux.vnet.ibm.com>
The code looks fine, and works for me.
Reviewed-by: Cheng Xu <chengxu@linux.vnet.ibm.com>
> ---
>
> Attach it too in case webmail will mangle the patch.
>
> kernel/sched_autogroup.h | 1 +
> kernel/sched_rt.c | 22 +++++++++++++++++-----
> 2 files changed, 18 insertions(+), 5 deletions(-)
>
> diff --git a/kernel/sched_autogroup.h b/kernel/sched_autogroup.h
> index 0557705..c2f0e72 100644
> --- a/kernel/sched_autogroup.h
> +++ b/kernel/sched_autogroup.h
> @@ -13,6 +13,7 @@ struct autogroup {
> int nice;
> };
>
> +static inline bool task_group_is_autogroup(struct task_group *tg);
> static inline struct task_group *
> autogroup_task_group(struct task_struct *p, struct task_group *tg);
>
> diff --git a/kernel/sched_rt.c b/kernel/sched_rt.c
> index 10d0182..8c04cb2 100644
> --- a/kernel/sched_rt.c
> +++ b/kernel/sched_rt.c
> @@ -185,11 +185,23 @@ static inline u64 sched_rt_period(struct rt_rq *rt_rq)
>
> typedef struct task_group *rt_rq_iter_t;
>
> -#define for_each_rt_rq(rt_rq, iter, rq) \
> - for (iter = list_entry_rcu(task_groups.next, typeof(*iter), list); \
> - (&iter->list != &task_groups) && \
> - (rt_rq = iter->rt_rq[cpu_of(rq)]); \
> - iter = list_entry_rcu(iter->list.next, typeof(*iter), list))
> +static inline struct task_group *next_task_group(struct task_group *tg)
> +{
> + do {
> + tg = list_entry_rcu(tg->list.next,
> + typeof(struct task_group), list);
> + } while (&tg->list != &task_groups && task_group_is_autogroup(tg));
> +
> + if (&tg->list == &task_groups)
> + tg = NULL;
> +
> + return tg;
> +}
> +
> +#define for_each_rt_rq(rt_rq, iter, rq) \
> + for (iter = container_of(&task_groups, typeof(*iter), list); \
> + (iter = next_task_group(iter)) && \
> + (rt_rq = iter->rt_rq[cpu_of(rq)]);)
>
> static inline void list_add_leaf_rt_rq(struct rt_rq *rt_rq)
> {
next prev parent reply other threads:[~2011-06-30 3:33 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-22 5:22 [PATCH] sched: skip autogroup when looking for all rt sched groups Yong Zhang
2011-06-23 11:21 ` Cheng Xu
2011-06-28 2:40 ` Yong Zhang
2011-06-28 2:51 ` [PATCH V2] " Yong Zhang
2011-06-30 3:33 ` Cheng Xu [this message]
2011-07-01 15:17 ` [tip:sched/core] sched: Skip " tip-bot for Yong Zhang
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=4E0BEE6F.3090802@linux.vnet.ibm.com \
--to=chengxu@linux.vnet.ibm.com \
--cc=efault@gmx.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=peterz@infradead.org \
--cc=yong.zhang0@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.