tools lib traceevent, perf tools: Rename traceevent_* APIs
In order to make libtraceevent into a proper library, variables, data structures and functions require a unique prefix to prevent name space conflicts. That prefix will be "tep_" and not "traceevent_". This changes APIs: traceevent_host_bigendian, traceevent_load_plugins and traceevent_unload_plugins Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Yordan Karadzhov (VMware) <y.karadz@gmail.com> Cc: linux-trace-devel@vger.kernel.org Link: http://lkml.kernel.org/r/20180808180701.484691639@goodmis.org Signed-off-by: Steven Rostedt <rostedt@goodmis.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:

committed by
Arnaldo Carvalho de Melo

parent
ece2a4f483
commit
fc9b69710e
@@ -31,7 +31,7 @@ int trace_event__init(struct trace_event *t)
|
||||
struct tep_handle *pevent = tep_alloc();
|
||||
|
||||
if (pevent) {
|
||||
t->plugin_list = traceevent_load_plugins(pevent);
|
||||
t->plugin_list = tep_load_plugins(pevent);
|
||||
t->pevent = pevent;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ int trace_event__init(struct trace_event *t)
|
||||
|
||||
static int trace_event__init2(void)
|
||||
{
|
||||
int be = traceevent_host_bigendian();
|
||||
int be = tep_host_bigendian();
|
||||
struct tep_handle *pevent;
|
||||
|
||||
if (trace_event__init(&tevent))
|
||||
@@ -65,7 +65,7 @@ int trace_event__register_resolver(struct machine *machine,
|
||||
|
||||
void trace_event__cleanup(struct trace_event *t)
|
||||
{
|
||||
traceevent_unload_plugins(t->plugin_list, t->pevent);
|
||||
tep_unload_plugins(t->plugin_list, t->pevent);
|
||||
tep_free(t->pevent);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user