Skip to content

Commit 563d399

Browse files
Leo-Yanacmel
authored andcommitted
perf kvm stat: Fix relative paths for including headers
Add an extra "../" to the relative paths so that the uAPI headers provided by tools can be found correctly. Fixes: a724a8f ("perf kvm stat: Fix build error") Reported-by: Namhyung Kim <namhyung@kernel.org> Suggested-by: Ian Rogers <irogers@google.com> Reviewed-by: Ian Rogers <irogers@google.com> Signed-off-by: Leo Yan <leo.yan@arm.com> Signed-off-by: Namhyung Kim <namhyung@kernel.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
1 parent 72a8b9c commit 563d399

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/perf/util/kvm-stat-arch/kvm-stat-x86.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#include "../kvm-stat.h"
55
#include "../evsel.h"
66
#include "../env.h"
7-
#include "../../arch/x86/include/uapi/asm/svm.h"
8-
#include "../../arch/x86/include/uapi/asm/vmx.h"
9-
#include "../../arch/x86/include/uapi/asm/kvm.h"
7+
#include "../../../arch/x86/include/uapi/asm/svm.h"
8+
#include "../../../arch/x86/include/uapi/asm/vmx.h"
9+
#include "../../../arch/x86/include/uapi/asm/kvm.h"
1010
#include <subcmd/parse-options.h>
1111

1212
define_exit_reasons_table(vmx_exit_reasons, VMX_EXIT_REASONS);

0 commit comments

Comments
 (0)