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-read.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-read.c')
-rw-r--r-- | tools/perf/util/trace-event-read.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/perf/util/trace-event-read.c b/tools/perf/util/trace-event-read.c index 29b92065b88e..f097e0dd6c5c 100644 --- a/tools/perf/util/trace-event-read.c +++ b/tools/perf/util/trace-event-read.c | |||
@@ -292,7 +292,7 @@ struct cpu_data { | |||
292 | unsigned long long offset; | 292 | unsigned long long offset; |
293 | unsigned long long size; | 293 | unsigned long long size; |
294 | unsigned long long timestamp; | 294 | unsigned long long timestamp; |
295 | struct record *next; | 295 | struct pevent_record *next; |
296 | char *page; | 296 | char *page; |
297 | int cpu; | 297 | int cpu; |
298 | int index; | 298 | int index; |
@@ -377,9 +377,9 @@ static int calc_index(void *ptr, int cpu) | |||
377 | return (unsigned long)ptr - (unsigned long)cpu_data[cpu].page; | 377 | return (unsigned long)ptr - (unsigned long)cpu_data[cpu].page; |
378 | } | 378 | } |
379 | 379 | ||
380 | struct record *trace_peek_data(int cpu) | 380 | struct pevent_record *trace_peek_data(int cpu) |
381 | { | 381 | { |
382 | struct record *data; | 382 | struct pevent_record *data; |
383 | void *page = cpu_data[cpu].page; | 383 | void *page = cpu_data[cpu].page; |
384 | int idx = cpu_data[cpu].index; | 384 | int idx = cpu_data[cpu].index; |
385 | void *ptr = page + idx; | 385 | void *ptr = page + idx; |
@@ -477,9 +477,9 @@ read_again: | |||
477 | return data; | 477 | return data; |
478 | } | 478 | } |
479 | 479 | ||
480 | struct record *trace_read_data(int cpu) | 480 | struct pevent_record *trace_read_data(int cpu) |
481 | { | 481 | { |
482 | struct record *data; | 482 | struct pevent_record *data; |
483 | 483 | ||
484 | data = trace_peek_data(cpu); | 484 | data = trace_peek_data(cpu); |
485 | cpu_data[cpu].next = NULL; | 485 | cpu_data[cpu].next = NULL; |