diff options
| author | Arnaldo Carvalho de Melo <[email protected]> | 2019-08-30 18:09:54 +0000 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2019-09-01 01:27:48 +0000 |
| commit | d3300a3c4e76ccecf4daa889327e340a870c550b (patch) | |
| tree | 3daa0185836cd4f43261fdc3617cf611e822ba05 /tools/perf/builtin-annotate.c | |
| parent | perf auxtrace: Uninline functions that touch perf_session (diff) | |
| download | kernel-d3300a3c4e76ccecf4daa889327e340a870c550b.tar.gz kernel-d3300a3c4e76ccecf4daa889327e340a870c550b.zip | |
perf symbols: Move mem_info and branch_info out of symbol.h
The mem_info struct goes to mem-events.h and branch_info goes to
branch.h, where they belong, this way we can remove several headers from
symbols.h and trim the include dependency tree more.
Cc: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Namhyung Kim <[email protected]>
Link: https://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/builtin-annotate.c')
| -rw-r--r-- | tools/perf/builtin-annotate.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index 7135b77a18e7..4e4d2e76232e 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c @@ -33,6 +33,8 @@ #include "util/data.h" #include "arch/common.h" #include "util/block-range.h" +#include "util/map_symbol.h" +#include "util/branch.h" #include <dlfcn.h> #include <errno.h> |
