[tip:perf/urgent] tools lib traceevent, perf tools: Rename 'struct pevent_record' to 'struct tep_record'

2018-08-18 Thread tip-bot for Tzvetomir Stoyanov (VMware)
Commit-ID:  cbc49b25b9cf26bf8c91169085be27382d945dd7
Gitweb: https://git.kernel.org/tip/cbc49b25b9cf26bf8c91169085be27382d945dd7
Author: Tzvetomir Stoyanov (VMware) 
AuthorDate: Wed, 8 Aug 2018 14:02:47 -0400
Committer:  Arnaldo Carvalho de Melo 
CommitDate: Mon, 13 Aug 2018 15:21:13 -0300

tools lib traceevent, perf tools: Rename 'struct pevent_record' to 'struct 
tep_record'

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
the 'struct pevent_record' to 'struct tep_record'.

Signed-off-by: Tzvetomir Stoyanov (VMware) 
Cc: Andrew Morton 
Cc: Peter Zijlstra 
Cc: Yordan Karadzhov (VMware) 
Cc: linux-trace-de...@vger.kernel.org
Link: http://lkml.kernel.org/r/20180808180659.866021...@goodmis.org
Signed-off-by: Steven Rostedt 
Signed-off-by: Arnaldo Carvalho de Melo 
---
 tools/lib/traceevent/event-parse.c | 36 
 tools/lib/traceevent/event-parse.h | 44 +++---
 tools/lib/traceevent/parse-filter.c| 24 
 tools/lib/traceevent/plugin_function.c |  2 +-
 tools/lib/traceevent/plugin_hrtimer.c  |  4 +--
 tools/lib/traceevent/plugin_kmem.c |  2 +-
 tools/lib/traceevent/plugin_kvm.c  | 14 +-
 tools/lib/traceevent/plugin_mac80211.c |  2 +-
 tools/lib/traceevent/plugin_sched_switch.c |  6 ++--
 tools/perf/builtin-kmem.c  |  2 +-
 tools/perf/util/sort.c |  2 +-
 tools/perf/util/trace-event-parse.c|  2 +-
 12 files changed, 70 insertions(+), 70 deletions(-)

diff --git a/tools/lib/traceevent/event-parse.c 
b/tools/lib/traceevent/event-parse.c
index 1eec313cc447..90f30f9dde14 100644
--- a/tools/lib/traceevent/event-parse.c
+++ b/tools/lib/traceevent/event-parse.c
@@ -5150,7 +5150,7 @@ out_failed:
  * and lock depth) and places it into the trace_seq.
  */
 void pevent_data_lat_fmt(struct tep_handle *pevent,
-struct trace_seq *s, struct pevent_record *record)
+struct trace_seq *s, struct tep_record *record)
 {
static int check_lock_depth = 1;
static int check_migrate_disable = 1;
@@ -5229,7 +5229,7 @@ void pevent_data_lat_fmt(struct tep_handle *pevent,
  *
  * This returns the event id from the @rec.
  */
-int pevent_data_type(struct tep_handle *pevent, struct pevent_record *rec)
+int pevent_data_type(struct tep_handle *pevent, struct tep_record *rec)
 {
return trace_parse_common_type(pevent, rec->data);
 }
@@ -5253,7 +5253,7 @@ struct event_format *pevent_data_event_from_type(struct 
tep_handle *pevent, int
  *
  * This returns the PID from a record.
  */
-int pevent_data_pid(struct tep_handle *pevent, struct pevent_record *rec)
+int pevent_data_pid(struct tep_handle *pevent, struct tep_record *rec)
 {
return parse_common_pid(pevent, rec->data);
 }
@@ -5265,7 +5265,7 @@ int pevent_data_pid(struct tep_handle *pevent, struct 
pevent_record *rec)
  *
  * This returns the preempt count from a record.
  */
-int pevent_data_preempt_count(struct tep_handle *pevent, struct pevent_record 
*rec)
+int pevent_data_preempt_count(struct tep_handle *pevent, struct tep_record 
*rec)
 {
return parse_common_pc(pevent, rec->data);
 }
@@ -5279,7 +5279,7 @@ int pevent_data_preempt_count(struct tep_handle *pevent, 
struct pevent_record *r
  *
  *  Use trace_flag_type enum for the flags (see event-parse.h).
  */
-int pevent_data_flags(struct tep_handle *pevent, struct pevent_record *rec)
+int pevent_data_flags(struct tep_handle *pevent, struct tep_record *rec)
 {
return parse_common_flags(pevent, rec->data);
 }
@@ -5400,7 +5400,7 @@ int pevent_cmdline_pid(struct tep_handle *pevent, struct 
cmdline *cmdline)
  * writes the print format into the trace_seq.
  */
 void pevent_event_info(struct trace_seq *s, struct event_format *event,
-  struct pevent_record *record)
+  struct tep_record *record)
 {
int print_pretty = 1;
 
@@ -5441,7 +5441,7 @@ static bool is_timestamp_in_us(char *trace_clock, bool 
use_trace_clock)
  * is found.
  */
 struct event_format *
-pevent_find_event_by_record(struct tep_handle *pevent, struct pevent_record 
*record)
+pevent_find_event_by_record(struct tep_handle *pevent, struct tep_record 
*record)
 {
int type;
 
@@ -5466,7 +5466,7 @@ pevent_find_event_by_record(struct tep_handle *pevent, 
struct pevent_record *rec
  */
 void pevent_print_event_task(struct tep_handle *pevent, struct trace_seq *s,
 struct event_format *event,
-struct pevent_record *record)
+struct tep_record *record)
 {
void *data = record->data;
const char *comm;
@@ -5494,7 +5494,7 @@ void pevent_print_event_task(struct tep_handle *pevent, 
struct trace_seq *s,
  */
 void 

[tip:perf/urgent] tools lib traceevent, perf tools: Rename 'struct pevent_record' to 'struct tep_record'

2018-08-18 Thread tip-bot for Tzvetomir Stoyanov (VMware)
Commit-ID:  cbc49b25b9cf26bf8c91169085be27382d945dd7
Gitweb: https://git.kernel.org/tip/cbc49b25b9cf26bf8c91169085be27382d945dd7
Author: Tzvetomir Stoyanov (VMware) 
AuthorDate: Wed, 8 Aug 2018 14:02:47 -0400
Committer:  Arnaldo Carvalho de Melo 
CommitDate: Mon, 13 Aug 2018 15:21:13 -0300

tools lib traceevent, perf tools: Rename 'struct pevent_record' to 'struct 
tep_record'

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
the 'struct pevent_record' to 'struct tep_record'.

Signed-off-by: Tzvetomir Stoyanov (VMware) 
Cc: Andrew Morton 
Cc: Peter Zijlstra 
Cc: Yordan Karadzhov (VMware) 
Cc: linux-trace-de...@vger.kernel.org
Link: http://lkml.kernel.org/r/20180808180659.866021...@goodmis.org
Signed-off-by: Steven Rostedt 
Signed-off-by: Arnaldo Carvalho de Melo 
---
 tools/lib/traceevent/event-parse.c | 36 
 tools/lib/traceevent/event-parse.h | 44 +++---
 tools/lib/traceevent/parse-filter.c| 24 
 tools/lib/traceevent/plugin_function.c |  2 +-
 tools/lib/traceevent/plugin_hrtimer.c  |  4 +--
 tools/lib/traceevent/plugin_kmem.c |  2 +-
 tools/lib/traceevent/plugin_kvm.c  | 14 +-
 tools/lib/traceevent/plugin_mac80211.c |  2 +-
 tools/lib/traceevent/plugin_sched_switch.c |  6 ++--
 tools/perf/builtin-kmem.c  |  2 +-
 tools/perf/util/sort.c |  2 +-
 tools/perf/util/trace-event-parse.c|  2 +-
 12 files changed, 70 insertions(+), 70 deletions(-)

diff --git a/tools/lib/traceevent/event-parse.c 
b/tools/lib/traceevent/event-parse.c
index 1eec313cc447..90f30f9dde14 100644
--- a/tools/lib/traceevent/event-parse.c
+++ b/tools/lib/traceevent/event-parse.c
@@ -5150,7 +5150,7 @@ out_failed:
  * and lock depth) and places it into the trace_seq.
  */
 void pevent_data_lat_fmt(struct tep_handle *pevent,
-struct trace_seq *s, struct pevent_record *record)
+struct trace_seq *s, struct tep_record *record)
 {
static int check_lock_depth = 1;
static int check_migrate_disable = 1;
@@ -5229,7 +5229,7 @@ void pevent_data_lat_fmt(struct tep_handle *pevent,
  *
  * This returns the event id from the @rec.
  */
-int pevent_data_type(struct tep_handle *pevent, struct pevent_record *rec)
+int pevent_data_type(struct tep_handle *pevent, struct tep_record *rec)
 {
return trace_parse_common_type(pevent, rec->data);
 }
@@ -5253,7 +5253,7 @@ struct event_format *pevent_data_event_from_type(struct 
tep_handle *pevent, int
  *
  * This returns the PID from a record.
  */
-int pevent_data_pid(struct tep_handle *pevent, struct pevent_record *rec)
+int pevent_data_pid(struct tep_handle *pevent, struct tep_record *rec)
 {
return parse_common_pid(pevent, rec->data);
 }
@@ -5265,7 +5265,7 @@ int pevent_data_pid(struct tep_handle *pevent, struct 
pevent_record *rec)
  *
  * This returns the preempt count from a record.
  */
-int pevent_data_preempt_count(struct tep_handle *pevent, struct pevent_record 
*rec)
+int pevent_data_preempt_count(struct tep_handle *pevent, struct tep_record 
*rec)
 {
return parse_common_pc(pevent, rec->data);
 }
@@ -5279,7 +5279,7 @@ int pevent_data_preempt_count(struct tep_handle *pevent, 
struct pevent_record *r
  *
  *  Use trace_flag_type enum for the flags (see event-parse.h).
  */
-int pevent_data_flags(struct tep_handle *pevent, struct pevent_record *rec)
+int pevent_data_flags(struct tep_handle *pevent, struct tep_record *rec)
 {
return parse_common_flags(pevent, rec->data);
 }
@@ -5400,7 +5400,7 @@ int pevent_cmdline_pid(struct tep_handle *pevent, struct 
cmdline *cmdline)
  * writes the print format into the trace_seq.
  */
 void pevent_event_info(struct trace_seq *s, struct event_format *event,
-  struct pevent_record *record)
+  struct tep_record *record)
 {
int print_pretty = 1;
 
@@ -5441,7 +5441,7 @@ static bool is_timestamp_in_us(char *trace_clock, bool 
use_trace_clock)
  * is found.
  */
 struct event_format *
-pevent_find_event_by_record(struct tep_handle *pevent, struct pevent_record 
*record)
+pevent_find_event_by_record(struct tep_handle *pevent, struct tep_record 
*record)
 {
int type;
 
@@ -5466,7 +5466,7 @@ pevent_find_event_by_record(struct tep_handle *pevent, 
struct pevent_record *rec
  */
 void pevent_print_event_task(struct tep_handle *pevent, struct trace_seq *s,
 struct event_format *event,
-struct pevent_record *record)
+struct tep_record *record)
 {
void *data = record->data;
const char *comm;
@@ -5494,7 +5494,7 @@ void pevent_print_event_task(struct tep_handle *pevent, 
struct trace_seq *s,
  */
 void