[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <6955e0df-5835-e79b-2ba4-cddc3bb7c976@huawei.com>
Date: Mon, 15 May 2023 16:42:22 +0800
From: Yang Jihong <yangjihong1@...wei.com>
To: Adrian Hunter <adrian.hunter@...el.com>, <peterz@...radead.org>,
<mingo@...hat.com>, <acme@...nel.org>, <mark.rutland@....com>,
<alexander.shishkin@...ux.intel.com>, <jolsa@...nel.org>,
<namhyung@...nel.org>, <irogers@...gle.com>,
<anshuman.khandual@....com>, <jesussanp@...gle.com>,
<linux-perf-users@...r.kernel.org>, <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v2 1/4] perf trace-event-info: Add tracepoint_id_to_name()
helper
Hello,
On 2023/5/12 18:33, Adrian Hunter wrote:
> On 11/05/23 10:51, Yang Jihong wrote:
>> Add tracepoint_id_to_name() helper to search for the trace events directory
>> by given event id and return the corresponding tracepoint.
>>
>> Signed-off-by: Yang Jihong <yangjihong1@...wei.com>
>> ---
>> tools/perf/util/trace-event-info.c | 11 +++++++++++
>> tools/perf/util/trace-event.h | 6 ++++++
>> 2 files changed, 17 insertions(+)
>>
>> diff --git a/tools/perf/util/trace-event-info.c b/tools/perf/util/trace-event-info.c
>> index c24b3a15e319..a5c65cb02a28 100644
>> --- a/tools/perf/util/trace-event-info.c
>> +++ b/tools/perf/util/trace-event-info.c
>> @@ -466,6 +466,17 @@ static struct tracepoint_path *tracepoint_id_to_path(u64 config)
>> return NULL;
>> }
>>
>> +char *tracepoint_id_to_name(u64 config)
>> +{
>> + char *buf = NULL;
>> + struct tracepoint_path *path = tracepoint_id_to_path(config);
>
> It is considered slightly nicer to put local declarations
> in descending order of line length. i.e.
OK, will fix in v3.
>
> struct tracepoint_path *path = tracepoint_id_to_path(config);
> char *buf = NULL;
>
>> +
>> + if ((path != NULL) && (asprintf(&buf, "%s:%s", path->system, path->name) > 0))
>
> The parentheses are unnecessary and kernel style tends to avoid "!= NULL"
> i.e.
OK, will fix in v3.
Thanks,
Yang
Powered by blists - more mailing lists