aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/event.h
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2017-04-19 21:33:07 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2017-04-24 13:43:34 -0300
commite8b3ae40151e94e30a82c2cf8efa5ab4f99c8abf (patch)
treece477081642e687ae97604c984455c1c34ead1ef /tools/perf/util/event.h
parentperf tools: Remove poll.h and wait.h from util.h (diff)
downloadlinux-dev-e8b3ae40151e94e30a82c2cf8efa5ab4f99c8abf.tar.xz
linux-dev-e8b3ae40151e94e30a82c2cf8efa5ab4f99c8abf.zip
perf tools: Add the right header to obtain PERF_ALIGN()
The util/event.h header needs PERF_ALIGN(), but wasn't including linux/kernel.h, where it is defined, instead it was getting it by luck by including map.h, which it doesn't need at all. Fix it by including the right header. Link: http://lkml.kernel.org/n/tip-nf3t9blzm5ncoxsczi8oy9mx@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/event.h')
-rw-r--r--tools/perf/util/event.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h
index eb7a7b200737..db2de6413518 100644
--- a/tools/perf/util/event.h
+++ b/tools/perf/util/event.h
@@ -3,9 +3,9 @@
#include <limits.h>
#include <stdio.h>
+#include <linux/kernel.h>
#include "../perf.h"
-#include "map.h"
#include "build-id.h"
#include "perf_regs.h"