diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-01-27 13:42:37 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-02-06 14:00:38 +0100 |
commit | 1101f69af5335a863765100d1df1999fd1e8c5bf (patch) | |
tree | 41d53c3f4e1069f81be79a8a2505783f0ac335a7 /tools/perf/builtin-kallsyms.c | |
parent | perf symbols: Introduce map_symbol.h (diff) | |
download | linux-1101f69af5335a863765100d1df1999fd1e8c5bf.tar.xz linux-1101f69af5335a863765100d1df1999fd1e8c5bf.zip |
pref tools: Add missing map.h includes
Lots of places get the map.h file indirectly, and since we're going to
remove it from machine.h, then those need to include it directly, do it
now, before we remove that dep.
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-ob8jehdjda8h5jsrv9dqj9tf@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-kallsyms.c')
-rw-r--r-- | tools/perf/builtin-kallsyms.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/builtin-kallsyms.c b/tools/perf/builtin-kallsyms.c index 90d1a2305b72..bc7a2bc7aed7 100644 --- a/tools/perf/builtin-kallsyms.c +++ b/tools/perf/builtin-kallsyms.c @@ -13,6 +13,7 @@ #include <subcmd/parse-options.h> #include "debug.h" #include "machine.h" +#include "map.h" #include "symbol.h" static int __cmd_kallsyms(int argc, const char **argv) |