diff options
author | Steven Rostedt <srostedt@redhat.com> | 2012-04-05 18:48:06 -0400 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2012-04-25 07:35:48 -0400 |
commit | 1c698186abf5caaea06fda66590f6a0e0a21628d (patch) | |
tree | b100ba4b49a8b5c11f23d00804b47835235849bf /tools/perf/util/trace-event-parse.c | |
parent | 42c80139eaa0feebf961c9792fa9eef76a3ce663 (diff) |
parse-events: Rename struct record to struct pevent_record
As libtraceevent will be a library, having struct record is far
too generic of a name to use. Renaming it to be consistent with the
rest of the functions will be a better long term solution.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Arun Sharma <asharma@fb.com>
Cc: Namhyung Kim <namhyung.kim@lge.com>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Diffstat (limited to 'tools/perf/util/trace-event-parse.c')
-rw-r--r-- | tools/perf/util/trace-event-parse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/perf/util/trace-event-parse.c b/tools/perf/util/trace-event-parse.c index 39f22f8843a2..df2fddbf0cd2 100644 --- a/tools/perf/util/trace-event-parse.c +++ b/tools/perf/util/trace-event-parse.c | |||
@@ -152,7 +152,7 @@ void *raw_field_ptr(struct event_format *event, const char *name, void *data) | |||
152 | 152 | ||
153 | int trace_parse_common_type(void *data) | 153 | int trace_parse_common_type(void *data) |
154 | { | 154 | { |
155 | struct record record; | 155 | struct pevent_record record; |
156 | 156 | ||
157 | record.data = data; | 157 | record.data = data; |
158 | return pevent_data_type(pevent, &record); | 158 | return pevent_data_type(pevent, &record); |
@@ -160,7 +160,7 @@ int trace_parse_common_type(void *data) | |||
160 | 160 | ||
161 | int trace_parse_common_pid(void *data) | 161 | int trace_parse_common_pid(void *data) |
162 | { | 162 | { |
163 | struct record record; | 163 | struct pevent_record record; |
164 | 164 | ||
165 | record.data = data; | 165 | record.data = data; |
166 | return pevent_data_pid(pevent, &record); | 166 | return pevent_data_pid(pevent, &record); |
@@ -180,7 +180,7 @@ struct event_format *trace_find_event(int type) | |||
180 | void print_trace_event(int cpu, void *data, int size) | 180 | void print_trace_event(int cpu, void *data, int size) |
181 | { | 181 | { |
182 | struct event_format *event; | 182 | struct event_format *event; |
183 | struct record record; | 183 | struct pevent_record record; |
184 | struct trace_seq s; | 184 | struct trace_seq s; |
185 | int type; | 185 | int type; |
186 | 186 | ||
@@ -206,7 +206,7 @@ void print_trace_event(int cpu, void *data, int size) | |||
206 | void print_event(int cpu, void *data, int size, unsigned long long nsecs, | 206 | void print_event(int cpu, void *data, int size, unsigned long long nsecs, |
207 | char *comm) | 207 | char *comm) |
208 | { | 208 | { |
209 | struct record record; | 209 | struct pevent_record record; |
210 | struct trace_seq s; | 210 | struct trace_seq s; |
211 | int pid; | 211 | int pid; |
212 | 212 | ||