diff options
| author | Vincent Donnefort <vdonnefort@google.com> | 2026-03-11 19:49:56 +0300 |
|---|---|---|
| committer | Marc Zyngier <maz@kernel.org> | 2026-03-11 19:57:44 +0300 |
| commit | ce6a2badf58170bcf73489cd73981bb5775c1e22 (patch) | |
| tree | 177aa2bae2bd36f20f2fe130f1da529010335a8d | |
| parent | 39d5ca62a3dab7d162d49eb60b14cdd46138590f (diff) | |
| download | linux-ce6a2badf58170bcf73489cd73981bb5775c1e22.tar.xz | |
KVM: arm64: Fix out-of-tree build for nVHE/pKVM tracing
simple_ring_buffer.c is located in the source tree and isn't duplicated
to objtree. Fix its include path.
Signed-off-by: Vincent Donnefort <vdonnefort@google.com>
Link: https://patch.msgid.link/20260311164956.1424119-1-vdonnefort@google.com
Signed-off-by: Marc Zyngier <maz@kernel.org>
| -rw-r--r-- | arch/arm64/kvm/hyp/nvhe/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kvm/hyp/nvhe/Makefile b/arch/arm64/kvm/hyp/nvhe/Makefile index 143d55ec7298..3d33fbefdfc1 100644 --- a/arch/arm64/kvm/hyp/nvhe/Makefile +++ b/arch/arm64/kvm/hyp/nvhe/Makefile @@ -33,7 +33,7 @@ hyp-obj-$(CONFIG_NVHE_EL2_TRACING) += clock.o trace.o events.o hyp-obj-y += $(lib-objs) # Path to simple_ring_buffer.c -CFLAGS_trace.nvhe.o += -I$(objtree)/kernel/trace/ +CFLAGS_trace.nvhe.o += -I$(srctree)/kernel/trace/ ## ## Build rules for compiling nVHE hyp code |
