diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-01-28 00:03:34 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-02-06 10:00:38 -0300 |
commit | daecf9e0fa8e1bb3b227fcc15c4070caccbbb14f (patch) | |
tree | 30f8fcb8d6ddd52aff97e607390f672d335576d9 /tools/perf/util/event.c | |
parent | 7cadca8e1b4ae95f8be37d8da246eae8ebf5fb3a (diff) | |
download | blackbird-op-linux-daecf9e0fa8e1bb3b227fcc15c4070caccbbb14f.tar.gz blackbird-op-linux-daecf9e0fa8e1bb3b227fcc15c4070caccbbb14f.zip |
perf tools: Add missing include for symbols.h
Several places were using definitions found in symbols.h but not
including it, getting it by sheer luck from some other headers that now
are in the process of removing that include because they don't need it
or because simply having struct forward declarations is enough, fix it.
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-xbcvvx296d70kpg9wb0qmeq9@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/event.c')
-rw-r--r-- | tools/perf/util/event.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/event.c b/tools/perf/util/event.c index 4d84e7754be9..ba7be74fad6e 100644 --- a/tools/perf/util/event.c +++ b/tools/perf/util/event.c @@ -22,6 +22,7 @@ #include "thread_map.h" #include "sane_ctype.h" #include "map.h" +#include "symbol.h" #include "symbol/kallsyms.h" #include "asm/bug.h" #include "stat.h" |