From: Arnaldo Carvalho de Melo Date: Wed, 21 Aug 2019 16:58:12 +0000 (-0300) Subject: perf evlist: Add missing xyarray.h header X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=e14e5497d5253712e1545f79ad93309499ffb544;p=openwrt%2Fstaging%2Fblogic.git perf evlist: Add missing xyarray.h header It gets it very indirectly, via evsel.h -> counts.h, and since counts.h doesn't need xyarray.h at all, add it here before we remove it there. Cc: Adrian Hunter Cc: Jiri Olsa Cc: Namhyung Kim Link: https://lkml.kernel.org/n/tip-hkizv6gojwfklj9ezaiiztll@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c index 8582560b59af..68b7c949017e 100644 --- a/tools/perf/util/evlist.c +++ b/tools/perf/util/evlist.c @@ -37,6 +37,8 @@ #include #include +#include + #ifdef LACKS_SIGQUEUE_PROTOTYPE int sigqueue(pid_t pid, int sig, const union sigval value); #endif