From: Yang Jihong <yangjihong1@huawei.com>
To: Namhyung Kim <namhyung@kernel.org>, Yao Jin <yao.jin@linux.intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@redhat.com>,
Arnaldo Carvalho de Melo <acme@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Jiri Olsa <jolsa@redhat.com>, <gustavoars@kernel.org>,
<mliska@suse.cz>, linux-kernel <linux-kernel@vger.kernel.org>,
<zhangjinhao2@huawei.com>
Subject: Re: [PATCH v4] perf annotate: Fix sample events lost in stdio mode
Date: Tue, 16 Mar 2021 10:51:25 +0800 [thread overview]
Message-ID: <f5ffbcf7-03f2-6240-7047-7ee4b4ec301f@huawei.com> (raw)
In-Reply-To: <CAM9d7chGtOjUyD0S-BNtnDbL2A5CW=evhHa4cTg+ApBQOJAQ-w@mail.gmail.com>
Hello,
On 2021/3/13 11:06, Namhyung Kim wrote:
> On Sat, Mar 13, 2021 at 11:16 AM Yang Jihong <yangjihong1@huawei.com> wrote:
>>
>> In hist__find_annotations function, since different hist_entry may point to same
>> symbol, we free notes->src to signal already processed this symbol in stdio mode;
>> when annotate, entry will skipped if notes->src is NULL to avoid repeated output.
>>
>> However, there is a problem, for example, run the following command:
>>
>> # perf record -e branch-misses -e branch-instructions -a sleep 1
>>
>> perf.data file contains different types of sample event.
>>
>> If the same IP sample event exists in branch-misses and branch-instructions,
>> this event uses the same symbol. When annotate branch-misses events, notes->src
>> corresponding to this event is set to null, as a result, when annotate
>> branch-instructions events, this event is skipped and no annotate is output.
>>
>> Solution of this patch is to remove zfree in hists__find_annotations and
>> change sort order to "dso,symbol" to avoid duplicate output when different
>> processes correspond to the same symbol.
>
> Looks good. But I'm not sure about the branch stack mode.
> I suspect we can use the same sort key there.
>
I've submitted the v5 patch which uses same sort key in branch stack
mode, look forward to your review:
https://lore.kernel.org/patchwork/patch/1396841/
Thanks,
Yang.
> Jin Yao, what do you think?
>
> Thanks,
> Namhyung
>
>> ---
>> tools/perf/builtin-annotate.c | 13 ++++++-------
>> 1 file changed, 6 insertions(+), 7 deletions(-)
>>
>> diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c
>> index a23ba6bb99b6..ad169e3e2e8f 100644
>> --- a/tools/perf/builtin-annotate.c
>> +++ b/tools/perf/builtin-annotate.c
>> @@ -374,13 +374,6 @@ static void hists__find_annotations(struct hists *hists,
>> } else {
>> hist_entry__tty_annotate(he, evsel, ann);
>> nd = rb_next(nd);
>> - /*
>> - * Since we have a hist_entry per IP for the same
>> - * symbol, free he->ms.sym->src to signal we already
>> - * processed this symbol.
>> - */
>> - zfree(¬es->src->cycles_hist);
>> - zfree(¬es->src);
>> }
>> }
>> }
>> @@ -624,6 +617,12 @@ int cmd_annotate(int argc, const char **argv)
>> if (setup_sorting(annotate.session->evlist) < 0)
>> usage_with_options(annotate_usage, options);
>> } else {
>> + /*
>> + * Events of different processes may correspond to the same
>> + * symbol, we do not care about the processes in annotate,
>> + * set sort order to avoid repeated output.
>> + */
>> + sort_order = "dso,symbol";
>> if (setup_sorting(NULL) < 0)
>> usage_with_options(annotate_usage, options);
>> }
>> --
>> 2.30.GIT
>>
> .
>
prev parent reply other threads:[~2021-03-16 2:52 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-13 2:15 Yang Jihong
2021-03-13 3:06 ` Namhyung Kim
2021-03-15 8:47 ` Yang Jihong
2021-03-16 2:51 ` Yang Jihong [this message]
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=f5ffbcf7-03f2-6240-7047-7ee4b4ec301f@huawei.com \
--to=yangjihong1@huawei.com \
--cc=acme@kernel.org \
--cc=alexander.shishkin@linux.intel.com \
--cc=gustavoars@kernel.org \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mingo@redhat.com \
--cc=mliska@suse.cz \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.org \
--cc=yao.jin@linux.intel.com \
--cc=zhangjinhao2@huawei.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
all inboxes | Powered by JetHome®