aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2013-06-04 01:20:24 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-07-12 12:52:21 -0400
commit63af28fa167374e470c32570b7c955c4d973dda4 (patch)
tree98dc525c5535b10e9f33cee5c88f71e6a22f7ce6 /tools/perf/util
parent59657f9c8dd91363f1c94c1f749b33ecf626cfc2 (diff)
perf util: Make file/host_bigendian variable local
They're not used anywhere, just make them local variables. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Steven Rostedt <rostedt@goodmis.org> Link: http://lkml.kernel.org/r/1370323231-14022-10-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util')
-rw-r--r--tools/perf/util/trace-event-read.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/perf/util/trace-event-read.c b/tools/perf/util/trace-event-read.c
index 6166294d7f22..0dd9fbda88eb 100644
--- a/tools/perf/util/trace-event-read.c
+++ b/tools/perf/util/trace-event-read.c
@@ -39,9 +39,6 @@
39 39
40static int input_fd; 40static int input_fd;
41 41
42int file_bigendian;
43int host_bigendian;
44
45static ssize_t trace_data_size; 42static ssize_t trace_data_size;
46static bool repipe; 43static bool repipe;
47 44
@@ -342,6 +339,8 @@ ssize_t trace_report(int fd, struct pevent **ppevent, bool __repipe)
342 int show_funcs = 0; 339 int show_funcs = 0;
343 int show_printk = 0; 340 int show_printk = 0;
344 ssize_t size = -1; 341 ssize_t size = -1;
342 int file_bigendian;
343 int host_bigendian;
345 int file_long_size; 344 int file_long_size;
346 int file_page_size; 345 int file_page_size;
347 struct pevent *pevent; 346 struct pevent *pevent;