From: Li Huafei <lihuafei1@huawei.com>
To: "Masami Hiramatsu (Google)" <mhiramat@kernel.org>
Cc: <acme@kernel.org>, <peterz@infradead.org>, <mingo@redhat.com>,
<namhyung@kernel.org>, <mark.rutland@arm.com>,
<alexander.shishkin@linux.intel.com>, <jolsa@kernel.org>,
<irogers@google.com>, <adrian.hunter@intel.com>,
<kan.liang@linux.intel.com>, <dima@secretsauce.net>,
<aleksander.lobakin@intel.com>,
<linux-perf-users@vger.kernel.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 1/2] perf probe: Reset old content before processing the next event string
Date: Tue, 12 Nov 2024 09:47:09 +0800 [thread overview]
Message-ID: <24c76d15-43d1-3612-be61-44d34fb3ac9e@huawei.com> (raw)
In-Reply-To: <20241111134705.021f73408c0aff41918ab2a5@kernel.org>
On 2024/11/11 12:47, Masami Hiramatsu (Google) wrote:
> On Sat, 9 Nov 2024 02:19:08 +0800
> Li Huafei <lihuafei1@huawei.com> wrote:
>
>> I added two probe events:
>>
>> # perf probe -f -a schedule+8
>> Added new event:
>> probe:schedule (on schedule+8)
>>
>> You can now use it in all perf tools, such as:
>>
>> perf record -e probe:schedule -aR sleep 1
>>
>> # perf probe -f -a schedule+20
>> Added new event:
>> probe:schedule_1 (on schedule+20)
>>
>> You can now use it in all perf tools, such as:
>>
>> perf record -e probe:schedule_1 -aR sleep 1
>>
>> However, 'perf probe -l' shows the same offset:
>>
>> # perf probe -l
>> probe:schedule (on schedule+8@kernel/sched/core.c)
>> probe:schedule_1 (on schedule+8@kernel/sched/core.c)
>>
>> __show_perf_probe_events() does not clean up the 'pev' content when
>> parsing the rawlist. If the 'pev->offset' is not set while processing
>> the next probe event string, the offset value of the previous event will
>> be used. After adding debug information, it was found that indeed there
>> was line number information when processing 'probe:schedule_1', so the
>> offset was not set and used the offset from 'probe:schedule'.
>>
>> To fix this, in the loop that parses the rawlist, reset the contents of
>> 'tev' and 'pev' to ensure it does not affect the next parsing.
>>
>> After the modification, 'perf probe -l' shows the following:
>>
>> # perf probe -l
>> probe:schedule (on schedule+8@kernel/sched/core.c)
>> probe:schedule_1 (on schedule:-6751@kernel/sched/core.c)
>>
>> Note that 'probe:schedule_1' is displayed with line number, but the line
>> number seem to be incorrect. This issue is independent of the problem
>> fixed by the current patch and will be addressed in the next patch.
>>
>
> Good catch! But we should do the cleanup in clear_perf_probe_event()
> and clear_probe_trace_event().
>
>> Fixes: d8f9da240495 ("perf tools: Use zfree() where applicable")
>
> What we need is to revert this change for above 2 functions, because
> without that, it "clear"s the structure correctly. Current code
> releases allocated fields, but not clear all fields. This can lead
> another bug.
Right, I will make this change in the next version.
Thanks,
Huafei
>
> Thank you,
>
>> Signed-off-by: Li Huafei <lihuafei1@huawei.com>
>> ---
>> tools/perf/util/probe-event.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c
>> index a17c9b8a7a79..ec0b11f8d881 100644
>> --- a/tools/perf/util/probe-event.c
>> +++ b/tools/perf/util/probe-event.c
>> @@ -2695,6 +2695,8 @@ static int __show_perf_probe_events(int fd, bool is_kprobe,
>> next:
>> clear_perf_probe_event(&pev);
>> clear_probe_trace_event(&tev);
>> + memset(&tev, 0, sizeof(tev));
>> + memset(&pev, 0, sizeof(pev));
>> if (ret < 0)
>> break;
>> }
>> --
>> 2.25.1
>>
>>
>
>
prev parent reply other threads:[~2024-11-12 1:47 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-08 18:19 [PATCH 1/2] perf probe: Reset old content before processing the next event string Li Huafei
2024-11-08 18:19 ` [PATCH 2/2] perf probe: Fix the incorrect line number display in 'perf probe -l' Li Huafei
2024-11-11 8:05 ` Masami Hiramatsu
2024-11-11 12:05 ` Masami Hiramatsu
2024-11-12 3:09 ` Li Huafei
2024-11-13 8:39 ` Li Huafei
2024-11-13 15:45 ` Masami Hiramatsu
2024-11-11 4:47 ` [PATCH 1/2] perf probe: Reset old content before processing the next event string Masami Hiramatsu
2024-11-12 1:47 ` Li Huafei [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=24c76d15-43d1-3612-be61-44d34fb3ac9e@huawei.com \
--to=lihuafei1@huawei.com \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=aleksander.lobakin@intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=dima@secretsauce.net \
--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=mark.rutland@arm.com \
--cc=mhiramat@kernel.org \
--cc=mingo@redhat.com \
--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;
as well as URLs for NNTP newsgroup(s).