[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <58e0c059-5f7f-b763-4e97-c0f785dfdb69@us.ibm.com>
Date: Thu, 13 Apr 2017 10:40:50 -0500
From: Paul Clarke <pc@...ibm.com>
To: Masami Hiramatsu <mhiramat@...nel.org>
Cc: LKML <linux-kernel@...r.kernel.org>,
Arnaldo Carvalho de Melo <acme@...hat.com>,
David Ahern <dsahern@...il.com>,
"linux-perf-users@...r.kernel.org" <linux-perf-users@...r.kernel.org>
Subject: Re: [PATCH v5] Allow user probes on versioned symbols.
On 04/12/2017 09:20 PM, Masami Hiramatsu wrote:
> On Wed, 12 Apr 2017 09:41:51 -0500
> Paul Clarke <pc@...ibm.com> wrote:
>> static struct symbol *symbols__find_by_name(struct rb_root *symbols,
>> - const char *name)
>> + const char *name,
>> + unsigned int includes)
>
> Here, you might miss replacing this 'unsigned int' with enum.
> (actually, enum is equal to int, not unsigned int)
(Ugh.) My bad. Will fix.
>> +enum symbols_tag_includes {
>> + SYMBOLS_TAG__INCLUDE_NONE,
>> + SYMBOLS_TAG__INCLUDE_DEFAULT_ONLY
>> +};
>
> BTW, would we need such 's' for plural and third person singular for type name?
> And also, you should use enum type name for prefix so that other developers
> easily find the definition of enumeration, e.g.
>
> enum symbol_tag_include {
> SYMBOL_TAG_INCLUDE__NONE = 0,
> SYMBOL_TAG_INCLUDE__DEFAULT_ONLY
> };
I was thinking the top-level namespace would be "symbols", because we are not necessarily working with a single symbol. Secondary namespace would be "tag", since this enum is very specific to tags. Then, the actions are whether to "include none (of tagged symbols)" or "include only symbols tagged as default".
I'm fine with your suggestion, though, and will submit a new patch incorporating that soon.
Regards,
PC
Powered by blists - more mailing lists