diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-08-22 16:10:08 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-08-26 10:58:29 -0400 |
commit | 97b9d866a66cf9884cea623cde3300073815873d (patch) | |
tree | 8304e2cfb00015e628a7627dd70f2cad6499a4c6 /tools/perf/builtin-diff.c | |
parent | 125009026bfc9ec929975d35344bf69d2c636e95 (diff) |
perf srcline: Add missing srcline.h header to files needing its defs
When srcline was introduced it wrongly added the include to util/sort.h,
even with that header not needing the definitions it provides, fix it by
adding it to the places that need it as a pre patch to remove srcline.h
from sort.h.
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-shuebppedtye8hrgxk15qe3x@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-diff.c')
-rw-r--r-- | tools/perf/builtin-diff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/builtin-diff.c b/tools/perf/builtin-diff.c index e91c0d798181..51c37e53b3d8 100644 --- a/tools/perf/builtin-diff.c +++ b/tools/perf/builtin-diff.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include "util/session.h" | 15 | #include "util/session.h" |
16 | #include "util/tool.h" | 16 | #include "util/tool.h" |
17 | #include "util/sort.h" | 17 | #include "util/sort.h" |
18 | #include "util/srcline.h" | ||
18 | #include "util/symbol.h" | 19 | #include "util/symbol.h" |
19 | #include "util/data.h" | 20 | #include "util/data.h" |
20 | #include "util/config.h" | 21 | #include "util/config.h" |
@@ -22,6 +23,7 @@ | |||
22 | #include "util/annotate.h" | 23 | #include "util/annotate.h" |
23 | #include "util/map.h" | 24 | #include "util/map.h" |
24 | #include <linux/zalloc.h> | 25 | #include <linux/zalloc.h> |
26 | #include <subcmd/parse-options.h> | ||
25 | 27 | ||
26 | #include <errno.h> | 28 | #include <errno.h> |
27 | #include <inttypes.h> | 29 | #include <inttypes.h> |