Commit 6a48dc29 authored by Tzvetomir Stoyanov (VMware)'s avatar Tzvetomir Stoyanov (VMware) Committed by Arnaldo Carvalho de Melo

tools lib traceevent, perf tools: Rename pevent print 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 "pevent_". This changes
APIs: pevent_print_field, pevent_print_fields, pevent_print_funcs,
pevent_print_printk
Signed-off-by: default avatarTzvetomir 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/20180808180700.654453763@goodmis.orgSigned-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent c60167c1
...@@ -589,12 +589,12 @@ int pevent_register_function(struct tep_handle *pevent, char *func, ...@@ -589,12 +589,12 @@ int pevent_register_function(struct tep_handle *pevent, char *func,
} }
/** /**
* pevent_print_funcs - print out the stored functions * tep_print_funcs - print out the stored functions
* @pevent: handle for the pevent * @pevent: handle for the pevent
* *
* This prints out the stored functions. * This prints out the stored functions.
*/ */
void pevent_print_funcs(struct tep_handle *pevent) void tep_print_funcs(struct tep_handle *pevent)
{ {
int i; int i;
...@@ -732,12 +732,12 @@ int pevent_register_print_string(struct tep_handle *pevent, const char *fmt, ...@@ -732,12 +732,12 @@ int pevent_register_print_string(struct tep_handle *pevent, const char *fmt,
} }
/** /**
* pevent_print_printk - print out the stored strings * tep_print_printk - print out the stored strings
* @pevent: handle for the pevent * @pevent: handle for the pevent
* *
* This prints the string formats that were stored. * This prints the string formats that were stored.
*/ */
void pevent_print_printk(struct tep_handle *pevent) void tep_print_printk(struct tep_handle *pevent)
{ {
int i; int i;
...@@ -4800,7 +4800,7 @@ static int is_printable_array(char *p, unsigned int len) ...@@ -4800,7 +4800,7 @@ static int is_printable_array(char *p, unsigned int len)
return 1; return 1;
} }
void pevent_print_field(struct trace_seq *s, void *data, void tep_print_field(struct trace_seq *s, void *data,
struct format_field *field) struct format_field *field)
{ {
unsigned long long val; unsigned long long val;
...@@ -4865,7 +4865,7 @@ void pevent_print_field(struct trace_seq *s, void *data, ...@@ -4865,7 +4865,7 @@ void pevent_print_field(struct trace_seq *s, void *data,
} }
} }
void pevent_print_fields(struct trace_seq *s, void *data, void tep_print_fields(struct trace_seq *s, void *data,
int size __maybe_unused, struct event_format *event) int size __maybe_unused, struct event_format *event)
{ {
struct format_field *field; struct format_field *field;
...@@ -4873,7 +4873,7 @@ void pevent_print_fields(struct trace_seq *s, void *data, ...@@ -4873,7 +4873,7 @@ void pevent_print_fields(struct trace_seq *s, void *data,
field = event->format.fields; field = event->format.fields;
while (field) { while (field) {
trace_seq_printf(s, " %s=", field->name); trace_seq_printf(s, " %s=", field->name);
pevent_print_field(s, data, field); tep_print_field(s, data, field);
field = field->next; field = field->next;
} }
} }
...@@ -4899,7 +4899,7 @@ static void pretty_print(struct trace_seq *s, void *data, int size, struct event ...@@ -4899,7 +4899,7 @@ static void pretty_print(struct trace_seq *s, void *data, int size, struct event
if (event->flags & EVENT_FL_FAILED) { if (event->flags & EVENT_FL_FAILED) {
trace_seq_printf(s, "[FAILED TO PARSE]"); trace_seq_printf(s, "[FAILED TO PARSE]");
pevent_print_fields(s, data, size, event); tep_print_fields(s, data, size, event);
return; return;
} }
...@@ -5405,7 +5405,7 @@ void tep_event_info(struct trace_seq *s, struct event_format *event, ...@@ -5405,7 +5405,7 @@ void tep_event_info(struct trace_seq *s, struct event_format *event,
int print_pretty = 1; int print_pretty = 1;
if (event->pevent->print_raw || (event->flags & EVENT_FL_PRINTRAW)) if (event->pevent->print_raw || (event->flags & EVENT_FL_PRINTRAW))
pevent_print_fields(s, record->data, record->size, event); tep_print_fields(s, record->data, record->size, event);
else { else {
if (event->handler && !(event->flags & EVENT_FL_NOHANDLE)) if (event->handler && !(event->flags & EVENT_FL_NOHANDLE))
...@@ -5456,7 +5456,7 @@ pevent_find_event_by_record(struct tep_handle *pevent, struct tep_record *record ...@@ -5456,7 +5456,7 @@ pevent_find_event_by_record(struct tep_handle *pevent, struct tep_record *record
} }
/** /**
* pevent_print_event_task - Write the event task comm, pid and CPU * tep_print_event_task - Write the event task comm, pid and CPU
* @pevent: a handle to the pevent * @pevent: a handle to the pevent
* @s: the trace_seq to write to * @s: the trace_seq to write to
* @event: the handle to the record's event * @event: the handle to the record's event
...@@ -5464,7 +5464,7 @@ pevent_find_event_by_record(struct tep_handle *pevent, struct tep_record *record ...@@ -5464,7 +5464,7 @@ pevent_find_event_by_record(struct tep_handle *pevent, struct tep_record *record
* *
* Writes the tasks comm, pid and CPU to @s. * Writes the tasks comm, pid and CPU to @s.
*/ */
void pevent_print_event_task(struct tep_handle *pevent, struct trace_seq *s, void tep_print_event_task(struct tep_handle *pevent, struct trace_seq *s,
struct event_format *event, struct event_format *event,
struct tep_record *record) struct tep_record *record)
{ {
...@@ -5483,7 +5483,7 @@ void pevent_print_event_task(struct tep_handle *pevent, struct trace_seq *s, ...@@ -5483,7 +5483,7 @@ void pevent_print_event_task(struct tep_handle *pevent, struct trace_seq *s,
} }
/** /**
* pevent_print_event_time - Write the event timestamp * tep_print_event_time - Write the event timestamp
* @pevent: a handle to the pevent * @pevent: a handle to the pevent
* @s: the trace_seq to write to * @s: the trace_seq to write to
* @event: the handle to the record's event * @event: the handle to the record's event
...@@ -5492,7 +5492,7 @@ void pevent_print_event_task(struct tep_handle *pevent, struct trace_seq *s, ...@@ -5492,7 +5492,7 @@ void pevent_print_event_task(struct tep_handle *pevent, struct trace_seq *s,
* *
* Writes the timestamp of the record into @s. * Writes the timestamp of the record into @s.
*/ */
void pevent_print_event_time(struct tep_handle *pevent, struct trace_seq *s, void tep_print_event_time(struct tep_handle *pevent, struct trace_seq *s,
struct event_format *event, struct event_format *event,
struct tep_record *record, struct tep_record *record,
bool use_trace_clock) bool use_trace_clock)
...@@ -5534,7 +5534,7 @@ void pevent_print_event_time(struct tep_handle *pevent, struct trace_seq *s, ...@@ -5534,7 +5534,7 @@ void pevent_print_event_time(struct tep_handle *pevent, struct trace_seq *s,
} }
/** /**
* pevent_print_event_data - Write the event data section * tep_print_event_data - Write the event data section
* @pevent: a handle to the pevent * @pevent: a handle to the pevent
* @s: the trace_seq to write to * @s: the trace_seq to write to
* @event: the handle to the record's event * @event: the handle to the record's event
...@@ -5542,7 +5542,7 @@ void pevent_print_event_time(struct tep_handle *pevent, struct trace_seq *s, ...@@ -5542,7 +5542,7 @@ void pevent_print_event_time(struct tep_handle *pevent, struct trace_seq *s,
* *
* Writes the parsing of the record's data to @s. * Writes the parsing of the record's data to @s.
*/ */
void pevent_print_event_data(struct tep_handle *pevent, struct trace_seq *s, void tep_print_event_data(struct tep_handle *pevent, struct trace_seq *s,
struct event_format *event, struct event_format *event,
struct tep_record *record) struct tep_record *record)
{ {
...@@ -5559,7 +5559,7 @@ void pevent_print_event_data(struct tep_handle *pevent, struct trace_seq *s, ...@@ -5559,7 +5559,7 @@ void pevent_print_event_data(struct tep_handle *pevent, struct trace_seq *s,
tep_event_info(s, event, record); tep_event_info(s, event, record);
} }
void pevent_print_event(struct tep_handle *pevent, struct trace_seq *s, void tep_print_event(struct tep_handle *pevent, struct trace_seq *s,
struct tep_record *record, bool use_trace_clock) struct tep_record *record, bool use_trace_clock)
{ {
struct event_format *event; struct event_format *event;
...@@ -5577,9 +5577,9 @@ void pevent_print_event(struct tep_handle *pevent, struct trace_seq *s, ...@@ -5577,9 +5577,9 @@ void pevent_print_event(struct tep_handle *pevent, struct trace_seq *s,
return; return;
} }
pevent_print_event_task(pevent, s, event, record); tep_print_event_task(pevent, s, event, record);
pevent_print_event_time(pevent, s, event, record, use_trace_clock); tep_print_event_time(pevent, s, event, record, use_trace_clock);
pevent_print_event_data(pevent, s, event, record); tep_print_event_data(pevent, s, event, record);
} }
static int events_id_cmp(const void *a, const void *b) static int events_id_cmp(const void *a, const void *b)
...@@ -6388,7 +6388,7 @@ int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event, ...@@ -6388,7 +6388,7 @@ int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event,
} }
/** /**
* pevent_print_num_field - print a field and a format * tep_print_num_field - print a field and a format
* @s: The seq to print to * @s: The seq to print to
* @fmt: The printf format to print the field with. * @fmt: The printf format to print the field with.
* @event: the event that the field is for * @event: the event that the field is for
...@@ -6398,7 +6398,7 @@ int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event, ...@@ -6398,7 +6398,7 @@ int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event,
* *
* Returns: 0 on success, -1 field not found, or 1 if buffer is full. * Returns: 0 on success, -1 field not found, or 1 if buffer is full.
*/ */
int pevent_print_num_field(struct trace_seq *s, const char *fmt, int tep_print_num_field(struct trace_seq *s, const char *fmt,
struct event_format *event, const char *name, struct event_format *event, const char *name,
struct tep_record *record, int err) struct tep_record *record, int err)
{ {
...@@ -6420,7 +6420,7 @@ int pevent_print_num_field(struct trace_seq *s, const char *fmt, ...@@ -6420,7 +6420,7 @@ int pevent_print_num_field(struct trace_seq *s, const char *fmt,
} }
/** /**
* pevent_print_func_field - print a field and a format for function pointers * tep_print_func_field - print a field and a format for function pointers
* @s: The seq to print to * @s: The seq to print to
* @fmt: The printf format to print the field with. * @fmt: The printf format to print the field with.
* @event: the event that the field is for * @event: the event that the field is for
...@@ -6430,7 +6430,7 @@ int pevent_print_num_field(struct trace_seq *s, const char *fmt, ...@@ -6430,7 +6430,7 @@ int pevent_print_num_field(struct trace_seq *s, const char *fmt,
* *
* Returns: 0 on success, -1 field not found, or 1 if buffer is full. * Returns: 0 on success, -1 field not found, or 1 if buffer is full.
*/ */
int pevent_print_func_field(struct trace_seq *s, const char *fmt, int tep_print_func_field(struct trace_seq *s, const char *fmt,
struct event_format *event, const char *name, struct event_format *event, const char *name,
struct tep_record *record, int err) struct tep_record *record, int err)
{ {
......
...@@ -626,17 +626,17 @@ int pevent_register_print_string(struct tep_handle *pevent, const char *fmt, ...@@ -626,17 +626,17 @@ int pevent_register_print_string(struct tep_handle *pevent, const char *fmt,
unsigned long long addr); unsigned long long addr);
int pevent_pid_is_registered(struct tep_handle *pevent, int pid); int pevent_pid_is_registered(struct tep_handle *pevent, int pid);
void pevent_print_event_task(struct tep_handle *pevent, struct trace_seq *s, void tep_print_event_task(struct tep_handle *pevent, struct trace_seq *s,
struct event_format *event, struct event_format *event,
struct tep_record *record); struct tep_record *record);
void pevent_print_event_time(struct tep_handle *pevent, struct trace_seq *s, void tep_print_event_time(struct tep_handle *pevent, struct trace_seq *s,
struct event_format *event, struct event_format *event,
struct tep_record *record, struct tep_record *record,
bool use_trace_clock); bool use_trace_clock);
void pevent_print_event_data(struct tep_handle *pevent, struct trace_seq *s, void tep_print_event_data(struct tep_handle *pevent, struct trace_seq *s,
struct event_format *event, struct event_format *event,
struct tep_record *record); struct tep_record *record);
void pevent_print_event(struct tep_handle *pevent, struct trace_seq *s, void tep_print_event(struct tep_handle *pevent, struct trace_seq *s,
struct tep_record *record, bool use_trace_clock); struct tep_record *record, bool use_trace_clock);
int tep_parse_header_page(struct tep_handle *pevent, char *buf, unsigned long size, int tep_parse_header_page(struct tep_handle *pevent, char *buf, unsigned long size,
...@@ -665,11 +665,11 @@ int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event, ...@@ -665,11 +665,11 @@ int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event,
const char *name, struct tep_record *record, const char *name, struct tep_record *record,
unsigned long long *val, int err); unsigned long long *val, int err);
int pevent_print_num_field(struct trace_seq *s, const char *fmt, int tep_print_num_field(struct trace_seq *s, const char *fmt,
struct event_format *event, const char *name, struct event_format *event, const char *name,
struct tep_record *record, int err); struct tep_record *record, int err);
int pevent_print_func_field(struct trace_seq *s, const char *fmt, int tep_print_func_field(struct trace_seq *s, const char *fmt,
struct event_format *event, const char *name, struct event_format *event, const char *name,
struct tep_record *record, int err); struct tep_record *record, int err);
...@@ -718,9 +718,9 @@ struct cmdline *pevent_data_pid_from_comm(struct tep_handle *pevent, const char ...@@ -718,9 +718,9 @@ struct cmdline *pevent_data_pid_from_comm(struct tep_handle *pevent, const char
struct cmdline *next); struct cmdline *next);
int pevent_cmdline_pid(struct tep_handle *pevent, struct cmdline *cmdline); int pevent_cmdline_pid(struct tep_handle *pevent, struct cmdline *cmdline);
void pevent_print_field(struct trace_seq *s, void *data, void tep_print_field(struct trace_seq *s, void *data,
struct format_field *field); struct format_field *field);
void pevent_print_fields(struct trace_seq *s, void *data, void tep_print_fields(struct trace_seq *s, void *data,
int size __maybe_unused, struct event_format *event); int size __maybe_unused, struct event_format *event);
void tep_event_info(struct trace_seq *s, struct event_format *event, void tep_event_info(struct trace_seq *s, struct event_format *event,
struct tep_record *record); struct tep_record *record);
...@@ -805,8 +805,8 @@ const char *pevent_get_input_buf(void); ...@@ -805,8 +805,8 @@ const char *pevent_get_input_buf(void);
unsigned long long pevent_get_input_buf_ptr(void); unsigned long long pevent_get_input_buf_ptr(void);
/* for debugging */ /* for debugging */
void pevent_print_funcs(struct tep_handle *pevent); void tep_print_funcs(struct tep_handle *pevent);
void pevent_print_printk(struct tep_handle *pevent); void tep_print_printk(struct tep_handle *pevent);
/* ----------------------- filtering ----------------------- */ /* ----------------------- filtering ----------------------- */
......
...@@ -30,16 +30,16 @@ static int timer_expire_handler(struct trace_seq *s, ...@@ -30,16 +30,16 @@ static int timer_expire_handler(struct trace_seq *s,
{ {
trace_seq_printf(s, "hrtimer="); trace_seq_printf(s, "hrtimer=");
if (pevent_print_num_field(s, "0x%llx", event, "timer", if (tep_print_num_field(s, "0x%llx", event, "timer",
record, 0) == -1) record, 0) == -1)
pevent_print_num_field(s, "0x%llx", event, "hrtimer", tep_print_num_field(s, "0x%llx", event, "hrtimer",
record, 1); record, 1);
trace_seq_printf(s, " now="); trace_seq_printf(s, " now=");
pevent_print_num_field(s, "%llu", event, "now", record, 1); tep_print_num_field(s, "%llu", event, "now", record, 1);
pevent_print_func_field(s, " function=%s", event, "function", tep_print_func_field(s, " function=%s", event, "function",
record, 0); record, 0);
return 0; return 0;
} }
...@@ -50,19 +50,19 @@ static int timer_start_handler(struct trace_seq *s, ...@@ -50,19 +50,19 @@ static int timer_start_handler(struct trace_seq *s,
{ {
trace_seq_printf(s, "hrtimer="); trace_seq_printf(s, "hrtimer=");
if (pevent_print_num_field(s, "0x%llx", event, "timer", if (tep_print_num_field(s, "0x%llx", event, "timer",
record, 0) == -1) record, 0) == -1)
pevent_print_num_field(s, "0x%llx", event, "hrtimer", tep_print_num_field(s, "0x%llx", event, "hrtimer",
record, 1); record, 1);
pevent_print_func_field(s, " function=%s", event, "function", tep_print_func_field(s, " function=%s", event, "function",
record, 0); record, 0);
trace_seq_printf(s, " expires="); trace_seq_printf(s, " expires=");
pevent_print_num_field(s, "%llu", event, "expires", record, 1); tep_print_num_field(s, "%llu", event, "expires", record, 1);
trace_seq_printf(s, " softexpires="); trace_seq_printf(s, " softexpires=");
pevent_print_num_field(s, "%llu", event, "softexpires", record, 1); tep_print_num_field(s, "%llu", event, "softexpires", record, 1);
return 0; return 0;
} }
......
...@@ -276,7 +276,7 @@ static int kvm_exit_handler(struct trace_seq *s, struct tep_record *record, ...@@ -276,7 +276,7 @@ static int kvm_exit_handler(struct trace_seq *s, struct tep_record *record,
if (print_exit_reason(s, record, event, "exit_reason") < 0) if (print_exit_reason(s, record, event, "exit_reason") < 0)
return -1; return -1;
pevent_print_num_field(s, " rip 0x%lx", event, "guest_rip", record, 1); tep_print_num_field(s, " rip 0x%lx", event, "guest_rip", record, 1);
if (pevent_get_field_val(s, event, "info1", record, &info1, 0) >= 0 if (pevent_get_field_val(s, event, "info1", record, &info1, 0) >= 0
&& pevent_get_field_val(s, event, "info2", record, &info2, 0) >= 0) && pevent_get_field_val(s, event, "info2", record, &info2, 0) >= 0)
...@@ -336,10 +336,10 @@ static int kvm_nested_vmexit_inject_handler(struct trace_seq *s, struct tep_reco ...@@ -336,10 +336,10 @@ static int kvm_nested_vmexit_inject_handler(struct trace_seq *s, struct tep_reco
if (print_exit_reason(s, record, event, "exit_code") < 0) if (print_exit_reason(s, record, event, "exit_code") < 0)
return -1; return -1;
pevent_print_num_field(s, " info1 %llx", event, "exit_info1", record, 1); tep_print_num_field(s, " info1 %llx", event, "exit_info1", record, 1);
pevent_print_num_field(s, " info2 %llx", event, "exit_info2", record, 1); tep_print_num_field(s, " info2 %llx", event, "exit_info2", record, 1);
pevent_print_num_field(s, " int_info %llx", event, "exit_int_info", record, 1); tep_print_num_field(s, " int_info %llx", event, "exit_int_info", record, 1);
pevent_print_num_field(s, " int_info_err %llx", event, "exit_int_info_err", record, 1); tep_print_num_field(s, " int_info_err %llx", event, "exit_int_info_err", record, 1);
return 0; return 0;
} }
...@@ -347,7 +347,7 @@ static int kvm_nested_vmexit_inject_handler(struct trace_seq *s, struct tep_reco ...@@ -347,7 +347,7 @@ static int kvm_nested_vmexit_inject_handler(struct trace_seq *s, struct tep_reco
static int kvm_nested_vmexit_handler(struct trace_seq *s, struct tep_record *record, static int kvm_nested_vmexit_handler(struct trace_seq *s, struct tep_record *record,
struct event_format *event, void *context) struct event_format *event, void *context)
{ {
pevent_print_num_field(s, "rip %llx ", event, "rip", record, 1); tep_print_num_field(s, "rip %llx ", event, "rip", record, 1);
return kvm_nested_vmexit_inject_handler(s, record, event, context); return kvm_nested_vmexit_inject_handler(s, record, event, context);
} }
...@@ -406,7 +406,7 @@ static int kvm_mmu_print_role(struct trace_seq *s, struct tep_record *record, ...@@ -406,7 +406,7 @@ static int kvm_mmu_print_role(struct trace_seq *s, struct tep_record *record,
} else } else
trace_seq_printf(s, "WORD: %08x", role.word); trace_seq_printf(s, "WORD: %08x", role.word);
pevent_print_num_field(s, " root %u ", event, tep_print_num_field(s, " root %u ", event,
"root_count", record, 1); "root_count", record, 1);
if (pevent_get_field_val(s, event, "unsync", record, &val, 1) < 0) if (pevent_get_field_val(s, event, "unsync", record, &val, 1) < 0)
......
...@@ -53,8 +53,8 @@ static void print_string(struct trace_seq *s, struct event_format *event, ...@@ -53,8 +53,8 @@ static void print_string(struct trace_seq *s, struct event_format *event,
trace_seq_printf(s, "%.*s", length, (char *)data + offset); trace_seq_printf(s, "%.*s", length, (char *)data + offset);
} }
#define SF(fn) pevent_print_num_field(s, fn ":%d", event, fn, record, 0) #define SF(fn) tep_print_num_field(s, fn ":%d", event, fn, record, 0)
#define SFX(fn) pevent_print_num_field(s, fn ":%#x", event, fn, record, 0) #define SFX(fn) tep_print_num_field(s, fn ":%#x", event, fn, record, 0)
#define SP() trace_seq_putc(s, ' ') #define SP() trace_seq_putc(s, ' ')
static int drv_bss_info_changed(struct trace_seq *s, static int drv_bss_info_changed(struct trace_seq *s,
...@@ -66,7 +66,7 @@ static int drv_bss_info_changed(struct trace_seq *s, ...@@ -66,7 +66,7 @@ static int drv_bss_info_changed(struct trace_seq *s,
print_string(s, event, "wiphy_name", data); print_string(s, event, "wiphy_name", data);
trace_seq_printf(s, " vif:"); trace_seq_printf(s, " vif:");
print_string(s, event, "vif_name", data); print_string(s, event, "vif_name", data);
pevent_print_num_field(s, "(%d)", event, "vif_type", record, 1); tep_print_num_field(s, "(%d)", event, "vif_type", record, 1);
trace_seq_printf(s, "\n%*s", INDENT, ""); trace_seq_printf(s, "\n%*s", INDENT, "");
SF("assoc"); SP(); SF("assoc"); SP();
......
...@@ -610,7 +610,7 @@ static char *get_trace_output(struct hist_entry *he) ...@@ -610,7 +610,7 @@ static char *get_trace_output(struct hist_entry *he)
trace_seq_init(&seq); trace_seq_init(&seq);
if (symbol_conf.raw_trace) { if (symbol_conf.raw_trace) {
pevent_print_fields(&seq, he->raw_data, he->raw_size, tep_print_fields(&seq, he->raw_data, he->raw_size,
evsel->tp_format); evsel->tp_format);
} else { } else {
tep_event_info(&seq, evsel->tp_format, &rec); tep_event_info(&seq, evsel->tp_format, &rec);
...@@ -2047,7 +2047,7 @@ static int __sort__hde_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, ...@@ -2047,7 +2047,7 @@ static int __sort__hde_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
struct trace_seq seq; struct trace_seq seq;
raw_field: raw_field:
trace_seq_init(&seq); trace_seq_init(&seq);
pevent_print_field(&seq, he->raw_data, hde->field); tep_print_field(&seq, he->raw_data, hde->field);
str = seq.buffer; str = seq.buffer;
} }
......
...@@ -479,9 +479,9 @@ ssize_t trace_report(int fd, struct trace_event *tevent, bool __repipe) ...@@ -479,9 +479,9 @@ ssize_t trace_report(int fd, struct trace_event *tevent, bool __repipe)
repipe = false; repipe = false;
if (show_funcs) { if (show_funcs) {
pevent_print_funcs(pevent); tep_print_funcs(pevent);
} else if (show_printk) { } else if (show_printk) {
pevent_print_printk(pevent); tep_print_printk(pevent);
} }
pevent = NULL; pevent = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment