diff options
Diffstat (limited to 'tools/perf/util/session.c')
-rw-r--r-- | tools/perf/util/session.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c index 8e7c1896eaa2..cf91d099f0aa 100644 --- a/tools/perf/util/session.c +++ b/tools/perf/util/session.c | |||
@@ -1,3 +1,6 @@ | |||
1 | #define _LARGEFILE64_SOURCE | ||
2 | #define _FILE_OFFSET_BITS 64 | ||
3 | |||
1 | #include <linux/kernel.h> | 4 | #include <linux/kernel.h> |
2 | 5 | ||
3 | #include <byteswap.h> | 6 | #include <byteswap.h> |
@@ -12,7 +15,7 @@ static int perf_session__open(struct perf_session *self, bool force) | |||
12 | { | 15 | { |
13 | struct stat input_stat; | 16 | struct stat input_stat; |
14 | 17 | ||
15 | self->fd = open(self->filename, O_RDONLY); | 18 | self->fd = open(self->filename, O_RDONLY|O_LARGEFILE); |
16 | if (self->fd < 0) { | 19 | if (self->fd < 0) { |
17 | pr_err("failed to open file: %s", self->filename); | 20 | pr_err("failed to open file: %s", self->filename); |
18 | if (!strcmp(self->filename, "perf.data")) | 21 | if (!strcmp(self->filename, "perf.data")) |