aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/arch/arm64/util/kvm-stat.c
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2021-04-16 14:41:13 -0700
committerArnaldo Carvalho de Melo <acme@redhat.com>2021-04-20 08:40:20 -0300
commitb96da02bd6b8d7d81b345c94d3d76d8733f5ef60 (patch)
tree1da5b2d5627583373ea15be6ff7ad2fafd25d843 /tools/perf/arch/arm64/util/kvm-stat.c
parentperf annotate: Add line number like in TUI and source location at EOL (diff)
downloadlinux-dev-b96da02bd6b8d7d81b345c94d3d76d8733f5ef60.tar.xz
linux-dev-b96da02bd6b8d7d81b345c94d3d76d8733f5ef60.zip
perf arm64: Fix off-by-one directory paths.
Relative path include works in the regular build due to -I paths but may break in other situations. Signed-off-by: Ian Rogers <irogers@google.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: John Garry <john.garry@huawei.com> Cc: Leo Yan <leo.yan@linaro.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Mathieu Poirier <mathieu.poirier@linaro.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Sergey Senozhatsky <sergey.senozhatsky@gmail.com> Cc: Stephane Eranian <eranian@google.com> Cc: Will Deacon <will@kernel.org> Cc: linux-arm-kernel@lists.infradead.org Link: http://lore.kernel.org/lkml/20210416214113.552252-1-irogers@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/arch/arm64/util/kvm-stat.c')
-rw-r--r--tools/perf/arch/arm64/util/kvm-stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/arch/arm64/util/kvm-stat.c b/tools/perf/arch/arm64/util/kvm-stat.c
index 50376b9062c1..2303256b7d05 100644
--- a/tools/perf/arch/arm64/util/kvm-stat.c
+++ b/tools/perf/arch/arm64/util/kvm-stat.c
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: GPL-2.0
#include <errno.h>
#include <memory.h>
-#include "../../util/evsel.h"
-#include "../../util/kvm-stat.h"
+#include "../../../util/evsel.h"
+#include "../../../util/kvm-stat.h"
#include "arm64_exception_types.h"
#include "debug.h"