From: Arnaldo Carvalho de Melo Date: Tue, 10 Sep 2019 15:16:27 +0000 (+0100) Subject: perf probe: Add missing build-id.h header. X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=36f3f450a8dc02d9ba0d31bc31d5b329759ed855;p=openwrt%2Fstaging%2Fblogic.git 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 Cc: Jiri Olsa Cc: Namhyung Kim Link: https://lkml.kernel.org/n/tip-7u3sf4j5huhi3mqa1q77524b@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/probe-file.c b/tools/perf/util/probe-file.c index d13db55a2feb..b659466ea498 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"