From: Tejun Heo <tj@kernel.org>
To: Peter Zijlstra <peterz@infradead.org>
Cc: lizefan@huawei.com, hannes@cmpxchg.org, mingo@redhat.com,
longman@redhat.com, cgroups@vger.kernel.org,
linux-kernel@vger.kernel.org, kernel-team@fb.com, pjt@google.com,
luto@amacapital.net, efault@gmx.de,
torvalds@linux-foundation.org, guro@fb.com
Subject: Re: [PATCH 2/2] sched: Implement interface for cgroup unified hierarchy
Date: Wed, 2 Aug 2017 08:41:35 -0700 [thread overview]
Message-ID: <20170802154135.GI2311718@devbig577.frc2.facebook.com> (raw)
In-Reply-To: <20170801214038.sp4lw6lrnl3votte@hirez.programming.kicks-ass.net>
Hello, Peter.
On Tue, Aug 01, 2017 at 11:40:38PM +0200, Peter Zijlstra wrote:
> > * On cgroup2, there is only one hierarchy. It'd be great to have
> > basic resource accounting enabled by default on all cgroups. Note
> > that we couldn't do that on v1 because there could be any number of
> > hierarchies and the cost would increase with the number of
> > hierarchies.
>
> Yes, the whole single hierarchy thing makes doing away with the double
> accounting possible.
Yeah, we can either do that or make it cheaper so that we can have
basic stats by default.
> > * It is bothersome that we're walking up the tree each time for
> > cpuacct although being percpu && just walking up the tree makes it
> > relatively cheap.
>
> So even if its only CPU local accounting, you still have all the pointer
> chasing and misses, not to mention that a faster O(depth) is still
> O(depth).
>
> > Anyways, I'm thinking about shifting the
> > aggregation to the reader side so that the hot path always only
> > updates local counters in a way which can scale even when there are
> > a lot of (idle) cgroups. Will follow up on this later.
>
> Not entirely sure I follow, we currently only update the current cgroup
> and its immediate parents, no? Or are you looking to only account into
> the current cgroup and propagate into the parents on reading?
Yeah, shifting the cost to the readers and being smart with
propagation so that reading isn't O(nr_descendants) but
O(nr_descendants_which_have_run_since_last_read). That way, we can
show the basic stats without taxing the hot paths with reasonable
scalability.
I have a couple questions about cpuacct tho.
* The stat file is sampling based and the usage files are calculated
from actual scheduling events. Is this because the latter is more
accurate?
* Why do we have user/sys breakdown in usage numbers? It tries to
distinguish user or sys by looking at task_pt_regs(). I can't see
how this would work (e.g. interrupt handlers never schedule) and w/o
kernel preemption, the sys part is always zero. What is this number
supposed to mean?
Thanks.
--
tejun
next prev parent reply other threads:[~2017-08-02 15:41 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-20 18:48 [PATCHSET for-4.14] cgroup, sched: cgroup2 interface for CPU controller Tejun Heo
2017-07-20 18:48 ` [PATCH 1/2] sched: Misc preps for cgroup unified hierarchy interface Tejun Heo
2017-07-20 18:48 ` [PATCH 2/2] sched: Implement interface for cgroup unified hierarchy Tejun Heo
2017-07-29 9:17 ` Peter Zijlstra
2017-08-01 20:17 ` Tejun Heo
2017-08-01 21:40 ` Peter Zijlstra
2017-08-02 15:41 ` Tejun Heo [this message]
2017-08-02 16:05 ` Peter Zijlstra
2017-08-02 18:16 ` Tejun Heo
2017-07-27 19:51 ` [PATCHSET for-4.14] cgroup, sched: cgroup2 interface for CPU controller Tejun Heo
-- strict thread matches above, loose matches on Subject: below --
2017-09-25 16:00 [PATCHSET REPOST for-4.15] cgroup, sched: cgroup2 interface for CPU controller (on basic acct) Tejun Heo
2017-09-25 16:00 ` [PATCH 2/2] sched: Implement interface for cgroup unified hierarchy Tejun Heo
2017-08-11 16:47 [PATCHSET for-4.14] cgroup, sched: cgroup2 interface for CPU controller (on basic acct) Tejun Heo
2017-08-11 16:47 ` [PATCH 2/2] sched: Implement interface for cgroup unified hierarchy Tejun Heo
2016-08-05 17:07 [Documentation] State of CPU controller in cgroup v2 Tejun Heo
2016-08-05 17:09 ` [PATCH 2/2] sched: Implement interface for cgroup unified hierarchy Tejun Heo
2016-01-05 16:47 [PATCHSET REPOST] sched, cgroup: implement cgroup v2 interface for cpu controller Tejun Heo
2016-01-05 16:48 ` [PATCH 2/2] sched: Implement interface for cgroup unified hierarchy Tejun Heo
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=20170802154135.GI2311718@devbig577.frc2.facebook.com \
--to=tj@kernel.org \
--cc=cgroups@vger.kernel.org \
--cc=efault@gmx.de \
--cc=guro@fb.com \
--cc=hannes@cmpxchg.org \
--cc=kernel-team@fb.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lizefan@huawei.com \
--cc=longman@redhat.com \
--cc=luto@amacapital.net \
--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