Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf tests cpumap: Add missing headers

It was getting all sort of needed stuff by sheer luck, via indirect
includes, fix it.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-tvjgo39t8k0ye6dntv3knran@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

+7
+7
tools/perf/tests/cpumap.c
··· 1 1 #include "tests.h" 2 + #include <stdio.h> 2 3 #include "cpumap.h" 4 + #include "event.h" 5 + #include <string.h> 6 + #include <linux/bitops.h> 7 + #include "debug.h" 8 + 9 + struct machine; 3 10 4 11 static int process_event_mask(struct perf_tool *tool __maybe_unused, 5 12 union perf_event *event,