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