From: Peter Zijlstra <peterz@infradead.org>
To: Lin Xiulei <linxiulei@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>,
mingo@redhat.com, acme@kernel.org,
alexander.shishkin@linux.intel.com, linux-kernel@vger.kernel.org,
tglx@linutronix.de, Stephane Eranian <eranian@gmail.com>,
torvalds@linux-foundation.org, linux-perf-users@vger.kernel.org,
Brendan Gregg <brendan.d.gregg@gmail.com>,
yang_oliver@hotmail.com, jinli.zjl@alibaba-inc.com,
"leilei.lin" <leilei.lin@alibaba-inc.com>
Subject: Re: [PATCH v2] perf/core: Fix installing cgroup event into cpu
Date: Wed, 24 Jan 2018 10:14:56 +0100 [thread overview]
Message-ID: <20180124091456.GN2228@hirez.programming.kicks-ass.net> (raw)
In-Reply-To: <CALPjY3mj7--oAmObtECYDw5GaJ3wLroBVrQ5eQztqmYMCm=8Cw@mail.gmail.com>
On Wed, Jan 24, 2018 at 04:32:38PM +0800, Lin Xiulei wrote:
> >> kernel/events/core.c | 44 +++++++++++++++++++++++++++++++-------------
> >> 1 file changed, 31 insertions(+), 13 deletions(-)
> >>
> >> diff --git a/kernel/events/core.c b/kernel/events/core.c
> >> index 4df5b69..f766b60 100644
> >> --- a/kernel/events/core.c
> >> +++ b/kernel/events/core.c
> >> @@ -933,31 +933,36 @@ list_update_cgroup_event(struct perf_event *event,
> >> {
> >> struct perf_cpu_context *cpuctx;
> >> struct list_head *cpuctx_entry;
> >> + struct perf_cgroup *cgrp;
> >>
> >> if (!is_cgroup_event(event))
> >> return;
> >>
> >> /*
> >> * Because cgroup events are always per-cpu events,
> >> * this will always be called from the right CPU.
> >> */
> >> cpuctx = __get_cpu_context(ctx);
> >> + cgrp = perf_cgroup_from_task(current, ctx);
> >>
> >> + /* cpuctx->cgrp is NULL unless a cgroup event is running in this CPU .*/
> >> + if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup)) {
> >> + if (add)
> >> cpuctx->cgrp = cgrp;
> >> + else
> >> + cpuctx->cgrp = NULL;
> >> }
> >> +
> >> + if (add && ctx->nr_cgroups++)
> >> + return;
> >> + else if (!add && --ctx->nr_cgroups)
> >> + return;
> >> +
> >> + cpuctx_entry = &cpuctx->cgrp_cpuctx_entry;
> >> + if (add)
> >> + list_add(cpuctx_entry, this_cpu_ptr(&cgrp_cpuctx_list));
> >> + else
> >> + list_del(cpuctx_entry);
> >> }
> >
> > I'm a little confused; you unconditionally set cpuctx->cgrp for every
> > add/delete.
> >
> > So if we have >1 cgroup events on, and we remove one, you still clear
> > cpuctx->cgrp, that seems wrong.
> >
> > Why did you change that? The Changelog doesn't include enough clues for
> > me to know what you were trying to do.
>
> if we have > 1 cgroup events on, whenever a cgroup was really to be
> deleted, only if this cgroup is the same as the cgroup running on this
> cpu, I would clear cpuctx->cgrp.
But that might still be too early, we might still have more cgroup
events active.
What goes wrong if we leave it set?
> Here is the problem, previous version didn't set cpuctx->cgrp anymore
> if ctx->nr_cgroups > 1, which cases a second event would not be
> activated immediately because cpuctx->cgrp isn't equal to event->cgrp
> at event_filter_match()
OK, I think I can see that happening. Please clarify the Changelog and
maybe put a comment in the code as well.
next prev parent reply other threads:[~2018-01-24 9:15 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-24 7:50 [PATCH v2] perf/core: Fix installing cgroup event into cpu linxiulei
2018-01-24 8:20 ` Peter Zijlstra
2018-01-24 8:32 ` Lin Xiulei
2018-01-24 9:14 ` Peter Zijlstra [this message]
2018-01-24 9:19 ` Lin Xiulei
2018-01-24 9:46 ` Peter Zijlstra
2018-01-24 9:59 ` Lin Xiulei
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=20180124091456.GN2228@hirez.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=acme@kernel.org \
--cc=alexander.shishkin@linux.intel.com \
--cc=brendan.d.gregg@gmail.com \
--cc=eranian@gmail.com \
--cc=jinli.zjl@alibaba-inc.com \
--cc=jolsa@redhat.com \
--cc=leilei.lin@alibaba-inc.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=linxiulei@gmail.com \
--cc=mingo@redhat.com \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.org \
--cc=yang_oliver@hotmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox