Skip to content

Commit 46f57d2

Browse files
captain5050acmel
authored andcommitted
perf arm: Fix off-by-one directory path
Relative path include works in the regular build due to -I paths but may fail in other situations. Fixes: 8386901 ("perf arch: Support register names from all archs") Reviewed-by: German Gomez <[email protected]> Signed-off-by: Ian Rogers <[email protected]> Cc: Alexander Shishkin <[email protected]> Cc: Alexandre Truong <[email protected]> Cc: Athira Jajeev <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: James Clark <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Mark Rutland <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
1 parent e652ab6 commit 46f57d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/perf/util/arm64-frame-pointer-unwind-support.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "unwind.h"
77

88
#define perf_event_arm_regs perf_event_arm64_regs
9-
#include "../arch/arm64/include/uapi/asm/perf_regs.h"
9+
#include "../../arch/arm64/include/uapi/asm/perf_regs.h"
1010
#undef perf_event_arm_regs
1111

1212
struct entries {

0 commit comments

Comments
 (0)