diff options
author | Marc Zyngier <maz@kernel.org> | 2022-07-27 15:29:02 +0100 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2022-07-27 18:18:03 +0100 |
commit | 9f5fee05f6897d0fe0e3a44ade71bb85cd97b2ef (patch) | |
tree | c942f5d53ed8f342bdc8ddba823fe0ff60da74de /arch/arm64/kvm/Makefile | |
parent | 03fe9cd05b9f38353208c23bd791dac47c912054 (diff) | |
download | linux-stable-9f5fee05f6897d0fe0e3a44ade71bb85cd97b2ef.tar.gz linux-stable-9f5fee05f6897d0fe0e3a44ade71bb85cd97b2ef.tar.bz2 linux-stable-9f5fee05f6897d0fe0e3a44ade71bb85cd97b2ef.zip |
KVM: arm64: Move nVHE stacktrace unwinding into its own compilation unit
The unwinding code doesn't really belong to the exit handling
code. Instead, move it to a file (conveniently named stacktrace.c
to confuse the reviewer), and move all the stacktrace-related
stuff there.
It will be joined by more code very soon.
Signed-off-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Kalesh Singh <kaleshsingh@google.com>
Tested-by: Kalesh Singh <kaleshsingh@google.com>
Reviewed-by: Oliver Upton <oliver.upton@linux.dev>
Link: https://lore.kernel.org/r/20220727142906.1856759-3-maz@kernel.org
Diffstat (limited to 'arch/arm64/kvm/Makefile')
-rw-r--r-- | arch/arm64/kvm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kvm/Makefile b/arch/arm64/kvm/Makefile index aa127ae9f675..5e33c2d4645a 100644 --- a/arch/arm64/kvm/Makefile +++ b/arch/arm64/kvm/Makefile @@ -12,7 +12,7 @@ obj-$(CONFIG_KVM) += hyp/ kvm-y += arm.o mmu.o mmio.o psci.o hypercalls.o pvtime.o \ inject_fault.o va_layout.o handle_exit.o \ - guest.o debug.o reset.o sys_regs.o \ + guest.o debug.o reset.o sys_regs.o stacktrace.o \ vgic-sys-reg-v3.o fpsimd.o pkvm.o \ arch_timer.o trng.o vmid.o \ vgic/vgic.o vgic/vgic-init.o \ |