The following commit has been merged into the perf/urgent branch of tip: Commit-ID: 36f3f450a8dc02d9ba0d31bc31d5b329759ed855 Gitweb: https://git.kernel.org/tip/36f3f450a8dc02d9ba0d31bc31d5b329759ed855 Author: Arnaldo Carvalho de Melo <[email protected]> AuthorDate: Tue, 10 Sep 2019 16:16:27 +01:00 Committer: Arnaldo Carvalho de Melo <[email protected]> CommitterDate: Fri, 20 Sep 2019 09:19:20 -03:00
perf probe: Add missing build-id.h header. It uses things defined in that header and was getting it only indirectly, thru dso.h, fix it. 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]> --- tools/perf/util/probe-file.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/perf/util/probe-file.c b/tools/perf/util/probe-file.c index d13db55..b659466 100644 --- a/tools/perf/util/probe-file.c +++ b/tools/perf/util/probe-file.c @@ -16,6 +16,7 @@ #include "strlist.h" #include "strfilter.h" #include "debug.h" +#include "build-id.h" #include "dso.h" #include "color.h" #include "symbol.h"

