From: Tejun Heo <tj@kernel.org>
To: Peter Zijlstra <peterz@infradead.org>
Cc: "Ingo Molnar" <mingo@redhat.com>,
"“linux-kernel@vger.kernel.org”" <linux-kernel@vger.kernel.org>,
"Linus Torvalds" <torvalds@linux-foundation.org>,
"Mike Galbraith" <efault@gmx.de>, "Paul Turner" <pjt@google.com>,
"Chris Mason" <clm@fb.com>,
"“kernel-team@fb.com”" <kernel-team@fb.com>
Subject: Re: [2/2] sched/fair: Fix O(# total cgroups) in load balance path
Date: Mon, 1 May 2017 15:11:13 -0400 [thread overview]
Message-ID: <20170501191113.GD8921@htj.duckdns.org> (raw)
In-Reply-To: <20170501161158.tgw3rko72aziygjx@hirez.programming.kicks-ass.net>
Hello, Peter.
On Mon, May 01, 2017 at 06:11:58PM +0200, Peter Zijlstra wrote:
> On Tue, Apr 25, 2017 at 05:43:50PM -0700, Tejun Heo wrote:
> > @@ -7007,6 +7008,14 @@ static void update_blocked_averages(int
> > se = cfs_rq->tg->se[cpu];
> > if (se && !skip_blocked_update(se))
> > update_load_avg(se, 0);
> > +
> > + /*
> > + * There can be a lot of idle CPU cgroups. Don't let fully
> > + * decayed cfs_rqs linger on the list.
> > + */
> > + if (!cfs_rq->load.weight && !cfs_rq->avg.load_sum &&
> > + !cfs_rq->avg.util_sum && !cfs_rq->runnable_load_sum)
> > + list_del_leaf_cfs_rq(cfs_rq);
> > }
> > rq_unlock_irqrestore(rq, &rf);
> > }
>
> Right this is a 'known' issue and we recently talked about this.
>
> I think you got the condition right, we want to wait for all the stuff
> to be decayed out before taking it off the list.
>
> The only 'problem', which Vincent mentioned in that other thread, is that
> NOHZ idle doesn't guarantee decay -- then again, you don't want to go
> wake a CPU just to decay this crud either. And if we're idle, the list
> being long doesn't matter either.
The list staying long is fine as long as nobody walks it; however, the
list can be *really* long, e.g. hundreds of thousands long, so walking
it repeatedly won't be a good idea even if the system is idle. As
long as NOHZ decays and trims the list when it ends up walking the
list, and AFAICS it does, it should be fine.
Thanks.
--
tejun
next prev parent reply other threads:[~2017-05-01 19:11 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-26 0:40 [PATCH 1/2] sched/fair: Use task_groups instead of leaf_cfs_rq_list to walk all cfs_rqs Tejun Heo
2017-04-26 0:43 ` [2/2] sched/fair: Fix O(# total cgroups) in load balance path Tejun Heo
2017-05-01 16:11 ` Peter Zijlstra
2017-05-01 19:11 ` Tejun Heo [this message]
2017-05-15 9:13 ` [tip:sched/core] sched/fair: Fix O(nr_cgroups) " tip-bot for Tejun Heo
2017-05-15 9:43 ` Peter Zijlstra
2017-05-15 10:13 ` tip-bot for Tejun Heo
2017-05-01 16:24 ` [PATCH 1/2] sched/fair: Use task_groups instead of leaf_cfs_rq_list to walk all cfs_rqs Peter Zijlstra
2017-05-01 16:59 ` Peter Zijlstra
2017-05-01 17:02 ` Peter Zijlstra
2017-05-01 19:07 ` Tejun Heo
2017-05-04 13:31 ` Peter Zijlstra
2017-05-04 17:31 ` Tejun Heo
2017-05-15 9:12 ` [tip:sched/core] " tip-bot for Peter Zijlstra
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=20170501191113.GD8921@htj.duckdns.org \
--to=tj@kernel.org \
--cc=clm@fb.com \
--cc=efault@gmx.de \
--cc=kernel-team@fb.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=pjt@google.com \
--cc=torvalds@linux-foundation.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