diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-01-27 12:02:41 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-02-06 14:00:38 +0100 |
commit | 9f4e8ff27a807dd6919faa0ecb2a152c57cfa5b2 (patch) | |
tree | 742f609ad5a892ddbbd3f1f9e0b99a1ea485813c /tools/perf/util/callchain.h | |
parent | perf callchain: Uninline callchain_cursor_reset() to remove map.h dependency (diff) | |
download | linux-9f4e8ff27a807dd6919faa0ecb2a152c57cfa5b2.tar.xz linux-9f4e8ff27a807dd6919faa0ecb2a152c57cfa5b2.zip |
perf symbols: Introduce map_symbol.h
To allow headers just wanting this definition to be able to get it
without all the things in symbol.h, to reduce the include dep tree.
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-l32z2qyhs6fe8unf4gk2ead2@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/callchain.h')
-rw-r--r-- | tools/perf/util/callchain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/callchain.h b/tools/perf/util/callchain.h index b6f18c2d4b14..80e056a3d882 100644 --- a/tools/perf/util/callchain.h +++ b/tools/perf/util/callchain.h @@ -5,7 +5,7 @@ #include <linux/list.h> #include <linux/rbtree.h> #include "event.h" -#include "symbol.h" +#include "map_symbol.h" #include "branch.h" struct map; |