From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>,
Jiri Olsa <jolsa@redhat.com>, Ingo Molnar <mingo@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
LKML <linux-kernel@vger.kernel.org>,
Stephane Eranian <eranian@google.com>,
Andi Kleen <ak@linux.intel.com>, Ian Rogers <irogers@google.com>
Subject: Re: [PATCH v3 3/3] perf tools: Add 'cgroup-switches' software event
Date: Wed, 19 May 2021 14:24:28 -0300 [thread overview]
Message-ID: <YKVJzOdc80CeS0PB@kernel.org> (raw)
In-Reply-To: <CAM9d7cg4C-fXEquFjttHnx0mqCKA2E1yL19ybKxqATGoPJ5AHw@mail.gmail.com>
Em Wed, May 05, 2021 at 10:53:16PM -0700, Namhyung Kim escreveu:
> On Mon, Apr 19, 2021 at 11:02 AM Namhyung Kim <namhyung@kernel.org> wrote:
> >
> > Hi Arnaldo,
> >
> > Could you please pick this up? The kernel part is landed in the
> > tip.git already.
>
> Ping!
Finally applied, will go via perf/urgent.
- Arnaldo
> Thanks,
> Namhyung
>
>
> > On Wed, Feb 10, 2021 at 5:33 PM Namhyung Kim <namhyung@kernel.org> wrote:
> > >
> > > It counts how often cgroups are changed actually during the context
> > > switches.
> > >
> > > # perf stat -a -e context-switches,cgroup-switches -a sleep 1
> > >
> > > Performance counter stats for 'system wide':
> > >
> > > 11,267 context-switches
> > > 10,950 cgroup-switches
> > >
> > > 1.015634369 seconds time elapsed
> > >
> > > Signed-off-by: Namhyung Kim <namhyung@kernel.org>
> > > ---
> > > tools/include/uapi/linux/perf_event.h | 1 +
> > > tools/perf/util/parse-events.c | 4 ++++
> > > tools/perf/util/parse-events.l | 1 +
> > > 3 files changed, 6 insertions(+)
> > >
> > > diff --git a/tools/include/uapi/linux/perf_event.h b/tools/include/uapi/linux/perf_event.h
> > > index b15e3447cd9f..16b9538ad89b 100644
> > > --- a/tools/include/uapi/linux/perf_event.h
> > > +++ b/tools/include/uapi/linux/perf_event.h
> > > @@ -112,6 +112,7 @@ enum perf_sw_ids {
> > > PERF_COUNT_SW_EMULATION_FAULTS = 8,
> > > PERF_COUNT_SW_DUMMY = 9,
> > > PERF_COUNT_SW_BPF_OUTPUT = 10,
> > > + PERF_COUNT_SW_CGROUP_SWITCHES = 11,
> > >
> > > PERF_COUNT_SW_MAX, /* non-ABI */
> > > };
> > > diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c
> > > index 42c84adeb2fb..09ff678519f3 100644
> > > --- a/tools/perf/util/parse-events.c
> > > +++ b/tools/perf/util/parse-events.c
> > > @@ -145,6 +145,10 @@ struct event_symbol event_symbols_sw[PERF_COUNT_SW_MAX] = {
> > > .symbol = "bpf-output",
> > > .alias = "",
> > > },
> > > + [PERF_COUNT_SW_CGROUP_SWITCHES] = {
> > > + .symbol = "cgroup-switches",
> > > + .alias = "",
> > > + },
> > > };
> > >
> > > #define __PERF_EVENT_FIELD(config, name) \
> > > diff --git a/tools/perf/util/parse-events.l b/tools/perf/util/parse-events.l
> > > index 9db5097317f4..88f203bb6fab 100644
> > > --- a/tools/perf/util/parse-events.l
> > > +++ b/tools/perf/util/parse-events.l
> > > @@ -347,6 +347,7 @@ emulation-faults { return sym(yyscanner, PERF_TYPE_SOFTWARE, PERF_COUNT_SW_EM
> > > dummy { return sym(yyscanner, PERF_TYPE_SOFTWARE, PERF_COUNT_SW_DUMMY); }
> > > duration_time { return tool(yyscanner, PERF_TOOL_DURATION_TIME); }
> > > bpf-output { return sym(yyscanner, PERF_TYPE_SOFTWARE, PERF_COUNT_SW_BPF_OUTPUT); }
> > > +cgroup-switches { return sym(yyscanner, PERF_TYPE_SOFTWARE, PERF_COUNT_SW_CGROUP_SWITCHES); }
> > >
> > > /*
> > > * We have to handle the kernel PMU event cycles-ct/cycles-t/mem-loads/mem-stores separately.
> > > --
> > > 2.30.0.478.g8a0d178c01-goog
> > >
--
- Arnaldo
next prev parent reply other threads:[~2021-05-19 17:24 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-10 8:33 [PATCH v3 1/3] perf core: Factor out __perf_sw_event_sched Namhyung Kim
2021-02-10 8:33 ` [PATCH v3 2/3] perf core: Add PERF_COUNT_SW_CGROUP_SWITCHES event Namhyung Kim
2021-04-16 15:01 ` [tip: perf/core] " tip-bot2 for Namhyung Kim
2021-04-16 17:13 ` tip-bot2 for Namhyung Kim
2021-02-10 8:33 ` [PATCH v3 3/3] perf tools: Add 'cgroup-switches' software event Namhyung Kim
2021-04-19 18:02 ` Namhyung Kim
2021-05-06 5:53 ` Namhyung Kim
2021-05-19 17:24 ` Arnaldo Carvalho de Melo [this message]
2021-02-25 9:00 ` [PATCH v3 1/3] perf core: Factor out __perf_sw_event_sched Stephane Eranian
2021-04-16 15:01 ` [tip: perf/core] " tip-bot2 for Namhyung Kim
2021-04-16 17:13 ` tip-bot2 for Namhyung Kim
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=YKVJzOdc80CeS0PB@kernel.org \
--to=acme@kernel.org \
--cc=ak@linux.intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=eranian@google.com \
--cc=irogers@google.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mingo@kernel.org \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.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