perf symbols: Remove some unnecessary includes from symbol.h
authorArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 22 Jan 2019 13:14:55 +0000 (11:14 -0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 25 Jan 2019 14:12:09 +0000 (15:12 +0100)
And fixup the fallout in places like annotation and jitdump that were
using things like dirname() but weren't including libgen.h, etc.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-wrii9hy1a1wathc0398f9fgt@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/annotate.c
tools/perf/util/dso.c
tools/perf/util/jitdump.c
tools/perf/util/symbol-minimal.c
tools/perf/util/symbol.h

index 70de8f6b3aee7870db595120da775353103acd8f..3d79add5f7aeadd0e5303e2a555c16d06cfce465 100644 (file)
@@ -9,6 +9,7 @@
 
 #include <errno.h>
 #include <inttypes.h>
+#include <libgen.h>
 #include "util.h"
 #include "ui/ui.h"
 #include "sort.h"
index 62c8cf622607ce718a1101d6c5ac548d56a8a294..1b17f6de957d01070756571b4816df36f2f9eb5d 100644 (file)
@@ -8,6 +8,7 @@
 #include <unistd.h>
 #include <errno.h>
 #include <fcntl.h>
+#include <libgen.h>
 #include "compress.h"
 #include "path.h"
 #include "symbol.h"
index bf249552a9b0e495e902939f0d82f5e4d454a799..eda28d3570bc0deff3fd4237149db54986d204ed 100644 (file)
@@ -2,6 +2,7 @@
 #include <sys/sysmacros.h>
 #include <sys/types.h>
 #include <errno.h>
+#include <libgen.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 7119df77dc0b4da31a9df58a89b952cf155bf430..17edbd4f6f855a475f3b073e057f04f8a88f16ce 100644 (file)
@@ -3,6 +3,7 @@
 #include "util.h"
 
 #include <errno.h>
+#include <unistd.h>
 #include <stdio.h>
 #include <fcntl.h>
 #include <string.h>
index 956d9916e36474cbf7e1185a55ac84cb1ee98a26..2162a5d9b3acc4817bf60c2ed53d11178a47fe22 100644 (file)
@@ -5,16 +5,10 @@
 #include <linux/types.h>
 #include <stdbool.h>
 #include <stdint.h>
-#include "map.h"
-#include "../perf.h"
 #include <linux/list.h>
 #include <linux/rbtree.h>
 #include <stdio.h>
-#include <byteswap.h>
-#include <libgen.h>
 #include "branch.h"
-#include "build-id.h"
-#include "event.h"
 #include "path.h"
 #include "symbol_conf.h"
 
 
 #include "dso.h"
 
+struct map;
+struct map_groups;
+struct option;
+
 /*
  * libelf 0.8.x and earlier do not support ELF_C_READ_MMAP;
  * for newer versions we can use mmap to reduce memory usage: