[tip:perfcounters/core] perf tools: Seek to the end of the header area

From: tip-bot for Ingo Molnar
Date: Thu Sep 03 2009 - 10:28:24 EST


Commit-ID: 2e01d1791168bb824226d8cc70e50374767dcc42
Gitweb: http://git.kernel.org/tip/2e01d1791168bb824226d8cc70e50374767dcc42
Author: Ingo Molnar <mingo@xxxxxxx>
AuthorDate: Thu, 3 Sep 2009 16:21:11 +0200
Committer: Ingo Molnar <mingo@xxxxxxx>
CommitDate: Thu, 3 Sep 2009 16:21:11 +0200

perf tools: Seek to the end of the header area

Leave the input fd at the data area.

It does not matter right now - but seeking at the end of it
certainly did not make sense.

Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx>
Cc: Mike Galbraith <efault@xxxxxx>
Cc: Paul Mackerras <paulus@xxxxxxxxx>
Cc: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
Cc: Frederic Weisbecker <fweisbec@xxxxxxxxx>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@xxxxxxx>


---
tools/perf/util/header.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c
index a37a222..ec4d4c2 100644
--- a/tools/perf/util/header.c
+++ b/tools/perf/util/header.c
@@ -237,7 +237,7 @@ struct perf_header *perf_header__read(int fd)
self->data_offset = f_header.data.offset;
self->data_size = f_header.data.size;

- lseek(fd, self->data_offset + self->data_size, SEEK_SET);
+ lseek(fd, self->data_offset, SEEK_SET);

self->frozen = 1;

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/