From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: David Ahern <dsahern@gmail.com>,
Adrian Hunter <adrian.hunter@intel.com>,
Borislav Petkov <bp@suse.de>,
Frederic Weisbecker <fweisbec@gmail.com>,
Jiri Olsa <jolsa@redhat.com>, Namhyung Kim <namhyung@kernel.org>,
Stephane Eranian <eranian@google.com>,
Ingo Molnar <mingo@kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [RFC PATCH] tools lib traceevent: Allow setting an alternative symbol resolver
Date: Thu, 23 Jul 2015 18:52:46 -0300 [thread overview]
Message-ID: <20150723215246.GF3154@kernel.org> (raw)
In-Reply-To: <20150723173524.057a5969@gandalf.local.home>
Em Thu, Jul 23, 2015 at 05:35:24PM -0400, Steven Rostedt escreveu:
> On Thu, 23 Jul 2015 18:25:36 -0300
> Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
>
> > Like this?
>
> Yep, but some comments.
>
> > +int pevent_set_function_resolver(struct pevent *pevent,
> > + pevent_func_resolver_t *func, void *priv)
> > +{
> > + struct func_resolver *resolver = malloc(sizeof(*resolver));
> > +
> > + if (resolver == NULL) {
> > + errno = ENOMEM;
>
> Why set errno, wont a failed malloc set it for us?
Humm, I thought about that, I've read malloc's man page and it doesn't
mention that... in the return section, but later, in NOTES, it says
UNIX98 requires that and glibc does it, so I'm ditching this...
> > + return -1;
> > + }
> > +
> > + resolver->func = func;
> > + resolver->priv = priv;
> > +
> > + free(pevent->func_resolver);
> > + pevent->func_resolver = resolver;
>
> Also I wonder if we should add a way to clear the resolver. That is,
> you want to use the default resolver?
I am adding a reset_function_resolver(pevent);
> Not really a necessity, as I don't see any current programs using it,
> but it would complete the interface.
>
> -- Steve
>
> > +
> > + return 0;
> > +}
> > +
> > +static struct func_map *
> > +find_func(struct pevent *pevent, unsigned long long addr)
> > +{
> > + struct func_map *map;
> > +
> > + if (!pevent->func_resolver)
> > + return __find_func(pevent, addr);
> > +
> > + map = &pevent->func_resolver->map;
> > + map->mod = NULL;
> > + map->addr = addr;
> > + map->func = pevent->func_resolver->func(pevent->func_resolver->priv,
> > + &map->addr, &map->mod);
> > + if (map->func == NULL)
> > + return NULL;
> > +
> > + return map;
> > +}
> > +
> > /**
> > * pevent_find_function - find a function by a given address
> > * @pevent: handle for the pevent
> > @@ -6564,6 +6618,7 @@ void pevent_free(struct pevent *pevent)
> > free(pevent->trace_clock);
> > free(pevent->events);
> > free(pevent->sort_events);
> > + free(pevent->func_resolver);
> >
> > free(pevent);
> > }
> > diff --git a/tools/lib/traceevent/event-parse.h b/tools/lib/traceevent/event-parse.h
> > index 063b1971eb35..416e1bd9fe33 100644
> > --- a/tools/lib/traceevent/event-parse.h
> > +++ b/tools/lib/traceevent/event-parse.h
> > @@ -453,6 +453,10 @@ struct cmdline_list;
> > struct func_map;
> > struct func_list;
> > struct event_handler;
> > +struct func_resolver;
> > +
> > +typedef char *(pevent_func_resolver_t)(void *priv,
> > + unsigned long long *addrp, char **modp);
> >
> > struct pevent {
> > int ref_count;
> > @@ -481,6 +485,7 @@ struct pevent {
> > int cmdline_count;
> >
> > struct func_map *func_map;
> > + struct func_resolver *func_resolver;
> > struct func_list *funclist;
> > unsigned int func_count;
> >
> > @@ -611,6 +616,8 @@ enum trace_flag_type {
> > TRACE_FLAG_SOFTIRQ = 0x10,
> > };
> >
> > +int pevent_set_function_resolver(struct pevent *pevent,
> > + pevent_func_resolver_t *func, void *priv);
> > int pevent_register_comm(struct pevent *pevent, const char *comm, int pid);
> > int pevent_register_trace_clock(struct pevent *pevent, const char *trace_clock);
> > int pevent_register_function(struct pevent *pevent, char *name,
next prev parent reply other threads:[~2015-07-23 21:52 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-23 15:04 [RFC PATCH] tools lib traceevent: Allow setting an alternative symbol resolver Arnaldo Carvalho de Melo
2015-07-23 16:21 ` Steven Rostedt
2015-07-23 17:25 ` Arnaldo Carvalho de Melo
2015-07-23 18:10 ` Steven Rostedt
2015-07-23 18:11 ` Steven Rostedt
2015-07-23 18:17 ` Arnaldo Carvalho de Melo
2015-07-23 21:25 ` Arnaldo Carvalho de Melo
2015-07-23 21:35 ` Steven Rostedt
2015-07-23 21:52 ` Arnaldo Carvalho de Melo [this message]
2015-07-23 21:58 ` Arnaldo Carvalho de Melo
2015-07-23 22:07 ` Steven Rostedt
2015-07-24 1:34 ` Arnaldo Carvalho de Melo
2015-07-24 1:46 ` Steven Rostedt
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=20150723215246.GF3154@kernel.org \
--to=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=bp@suse.de \
--cc=dsahern@gmail.com \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=namhyung@kernel.org \
--cc=rostedt@goodmis.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