Commit 7d380c8f1ed2b6768e1fc496ad373f716160fcf0
Committed by
Linus Torvalds
1 parent
3d6ee36dfb
Exists in
smarc-l5.0.0_1.0.0-ga
and in
5 other branches
perf: Fix UAPI fallout
The UAPI commits forgot to test tooling builds such as tools/perf/, and this fixes the fallout. Manual conversion. Signed-off-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Showing 10 changed files with 11 additions and 11 deletions Side-by-side Diff
tools/perf/Makefile
... | ... | @@ -252,10 +252,10 @@ |
252 | 252 | |
253 | 253 | LIB_FILE=$(OUTPUT)libperf.a |
254 | 254 | |
255 | -LIB_H += ../../include/linux/perf_event.h | |
255 | +LIB_H += ../../include/uapi/linux/perf_event.h | |
256 | 256 | LIB_H += ../../include/linux/rbtree.h |
257 | 257 | LIB_H += ../../include/linux/list.h |
258 | -LIB_H += ../../include/linux/const.h | |
258 | +LIB_H += ../../include/uapi/linux/const.h | |
259 | 259 | LIB_H += ../../include/linux/hash.h |
260 | 260 | LIB_H += ../../include/linux/stringify.h |
261 | 261 | LIB_H += util/include/linux/bitmap.h |
tools/perf/perf.h
tools/perf/util/evsel.c
... | ... | @@ -19,7 +19,7 @@ |
19 | 19 | #include "thread_map.h" |
20 | 20 | #include "target.h" |
21 | 21 | #include "../../../include/linux/hw_breakpoint.h" |
22 | -#include "../../include/linux/perf_event.h" | |
22 | +#include "../../../include/uapi/linux/perf_event.h" | |
23 | 23 | #include "perf_regs.h" |
24 | 24 | |
25 | 25 | #define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y)) |
tools/perf/util/evsel.h
tools/perf/util/header.h
tools/perf/util/include/asm/byteorder.h
tools/perf/util/include/linux/const.h
tools/perf/util/parse-events.h
tools/perf/util/pmu.h
tools/perf/util/session.h