]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
perf trace beauty open flags: Do not depend on the system's O_LARGEFILE define
authorArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 14 Jul 2017 15:09:31 +0000 (12:09 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 19 Jul 2017 02:13:59 +0000 (23:13 -0300)
In x86_64 /usr/include/bits/fcntl.h sets it to zero, so just undef it
and use the standard 00100000 value when decoding the open flags arg.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-k28megguz5snwop9obvn9mcr@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/trace/beauty/open_flags.c

index 5fb57bed7ea2cf9256f073d0674e785fe4c51c41..e520112fdb6eaa657b97c3ce8bed50e219f4169d 100644 (file)
@@ -18,6 +18,9 @@
 #define O_TMPFILE      020000000
 #endif
 
+#undef O_LARGEFILE
+#define O_LARGEFILE    00100000
+
 size_t open__scnprintf_flags(unsigned long flags, char *bf, size_t size)
 {
        int printed = 0;