From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Namhyung Kim <namhyung@kernel.org>
Cc: Ian Rogers <irogers@google.com>,
Kan Liang <kan.liang@linux.intel.com>,
Jiri Olsa <jolsa@kernel.org>,
Adrian Hunter <adrian.hunter@intel.com>,
Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@kernel.org>,
LKML <linux-kernel@vger.kernel.org>,
linux-perf-users@vger.kernel.org,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [PATCH] perf annotate: Fix --group behavior when leader has no samples
Date: Fri, 9 Aug 2024 18:15:30 -0300 [thread overview]
Message-ID: <ZraG8ryV_qubOt8R@x1> (raw)
In-Reply-To: <20240807061555.1642669-1-namhyung@kernel.org>
On Tue, Aug 06, 2024 at 11:15:55PM -0700, Namhyung Kim wrote:
> When --group option is used, it should display all events together. But
> the current logic only checks if the first (leader) event has samples or
> not. Let's check the member events as well.
>
> Also it missed to put the linked samples from member evsels to the
> output RB-tree so that it can be displayed in the output.
Thanks, re-tested and applied.
- Arnaldo
> For example, take a look at this example.
>
> $ ./perf evlist
> cpu/mem-loads,ldlat=30/P
> cpu/mem-stores/P
> dummy:u
>
> It has three events but 'path_put' function has samples only for
> mem-stores (second) event.
>
> $ sudo ./perf annotate --stdio -f path_put
> Percent | Source code & Disassembly of kcore for cpu/mem-stores/P (2 samples, percent: local period)
> ----------------------------------------------------------------------------------------------------------
> : 0 0xffffffffae600020 <path_put>:
> 0.00 : ffffffffae600020: endbr64
> 0.00 : ffffffffae600024: nopl (%rax, %rax)
> 91.22 : ffffffffae600029: pushq %rbx
> 0.00 : ffffffffae60002a: movq %rdi, %rbx
> 0.00 : ffffffffae60002d: movq 8(%rdi), %rdi
> 8.78 : ffffffffae600031: callq 0xffffffffae614aa0
> 0.00 : ffffffffae600036: movq (%rbx), %rdi
> 0.00 : ffffffffae600039: popq %rbx
> 0.00 : ffffffffae60003a: jmp 0xffffffffae620670
> 0.00 : ffffffffae60003f: nop
>
> Therefore, it didn't show up when --group option is used since the
> leader ("mem-loads") event has no samples. But now it checks both
> events.
>
> Before:
> $ sudo ./perf annotate --stdio -f --group path_put
> (no output)
>
> After:
> $ sudo ./perf annotate --stdio -f --group path_put
> Percent | Source code & Disassembly of kcore for cpu/mem-loads,ldlat=30/P, cpu/mem-stores/P, dummy:u (0 samples, percent: local period)
> -------------------------------------------------------------------------------------------------------------------------------------------------------------
> : 0 0xffffffffae600020 <path_put>:
> 0.00 0.00 0.00 : ffffffffae600020: endbr64
> 0.00 0.00 0.00 : ffffffffae600024: nopl (%rax, %rax)
> 0.00 91.22 0.00 : ffffffffae600029: pushq %rbx
> 0.00 0.00 0.00 : ffffffffae60002a: movq %rdi, %rbx
> 0.00 0.00 0.00 : ffffffffae60002d: movq 8(%rdi), %rdi
> 0.00 8.78 0.00 : ffffffffae600031: callq 0xffffffffae614aa0
> 0.00 0.00 0.00 : ffffffffae600036: movq (%rbx), %rdi
> 0.00 0.00 0.00 : ffffffffae600039: popq %rbx
> 0.00 0.00 0.00 : ffffffffae60003a: jmp 0xffffffffae620670
> 0.00 0.00 0.00 : ffffffffae60003f: nop
>
> Reported-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> Signed-off-by: Namhyung Kim <namhyung@kernel.org>
> ---
> tools/perf/builtin-annotate.c | 14 ++++++++++++--
> 1 file changed, 12 insertions(+), 2 deletions(-)
>
> diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c
> index efcadb7620b8..1bfe41783a7c 100644
> --- a/tools/perf/builtin-annotate.c
> +++ b/tools/perf/builtin-annotate.c
> @@ -632,13 +632,23 @@ static int __cmd_annotate(struct perf_annotate *ann)
> evlist__for_each_entry(session->evlist, pos) {
> struct hists *hists = evsel__hists(pos);
> u32 nr_samples = hists->stats.nr_samples;
> + struct ui_progress prog;
> + struct evsel *evsel;
>
> - if (nr_samples == 0)
> + if (!symbol_conf.event_group || !evsel__is_group_leader(pos))
> continue;
>
> - if (!symbol_conf.event_group || !evsel__is_group_leader(pos))
> + for_each_group_member(evsel, pos)
> + nr_samples += evsel__hists(evsel)->stats.nr_samples;
> +
> + if (nr_samples == 0)
> continue;
>
> + ui_progress__init(&prog, nr_samples,
> + "Sorting group events for output...");
> + evsel__output_resort(pos, &prog);
> + ui_progress__finish();
> +
> hists__find_annotations(hists, pos, ann);
> }
>
> --
> 2.46.0.rc2.264.g509ed76dc8-goog
>
next prev parent reply other threads:[~2024-08-09 21:15 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-03 21:13 [PATCHSET 0/5] perf annotate: Add --skip-empty option (v1) Namhyung Kim
2024-08-03 21:13 ` [PATCH 1/5] perf annotate: Use al->data_nr if possible Namhyung Kim
2024-08-03 21:13 ` [PATCH 2/5] perf annotate: Set notes->src->nr_events early Namhyung Kim
2024-08-03 21:13 ` [PATCH 3/5] perf annotate: Use annotation__pcnt_width() consistently Namhyung Kim
2024-08-03 21:13 ` [PATCH 4/5] perf annotate: Set al->data_nr using the notes->src->nr_events Namhyung Kim
2024-08-03 21:13 ` [PATCH 5/5] perf annotate: Add --skip-empty option Namhyung Kim
2024-08-05 19:22 ` Arnaldo Carvalho de Melo
2024-08-05 20:14 ` Namhyung Kim
2024-08-05 20:23 ` Arnaldo Carvalho de Melo
2024-08-05 20:50 ` Namhyung Kim
2024-08-06 13:12 ` Arnaldo Carvalho de Melo
2024-08-07 6:12 ` Namhyung Kim
2024-08-07 6:15 ` [PATCH] perf annotate: Fix --group behavior when leader has no samples Namhyung Kim
2024-08-09 21:15 ` Arnaldo Carvalho de Melo [this message]
2024-08-05 19:26 ` [PATCH 5/5] perf annotate: Add --skip-empty option Arnaldo Carvalho de Melo
2024-08-05 19:26 ` [PATCHSET 0/5] perf annotate: Add --skip-empty option (v1) Arnaldo Carvalho de Melo
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=ZraG8ryV_qubOt8R@x1 \
--to=acme@kernel.org \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=irogers@google.com \
--cc=jolsa@kernel.org \
--cc=kan.liang@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--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 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.