Skip to content

Commit

Permalink
perf util: Skip reading header_event file
Browse files Browse the repository at this point in the history
It seems perf does not parse header_event file so we can skip it as we
do for header_page file.

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-11-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Namhyung Kim authored and Arnaldo Carvalho de Melo committed Jul 12, 2013
1 parent 63af28f commit 2b2efc7
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions tools/perf/util/trace-event-read.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ static int read_ftrace_printk(struct pevent *pevent)
static int read_header_files(struct pevent *pevent)
{
unsigned long long size;
char *header_event;
char buf[BUFSIZ];
int ret = 0;

Expand All @@ -236,14 +235,8 @@ static int read_header_files(struct pevent *pevent)
}

size = read8(pevent);
header_event = malloc(size);
if (header_event == NULL)
return -1;

if (do_read(header_event, size) < 0)
ret = -1;
skip(size);

free(header_event);
return ret;
}

Expand Down

0 comments on commit 2b2efc7

Please sign in to comment.