diff options
author | Marc Zyngier <maz@kernel.org> | 2020-10-14 21:42:38 +0300 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2020-11-10 11:34:25 +0300 |
commit | e650b64f1a56cbc700f0a2d2ab8d23155757e2f3 (patch) | |
tree | b5b004d025564c836867233a7c59be87adb14073 /arch/arm64/kvm/hyp/vhe | |
parent | 21c810017cef75435be8b8f1da2110c6d1fd887b (diff) | |
download | linux-e650b64f1a56cbc700f0a2d2ab8d23155757e2f3.tar.xz |
KVM: arm64: Add basic hooks for injecting exceptions from EL2
Add the basic infrastructure to describe injection of exceptions
into a guest. So far, nothing uses this code path.
Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'arch/arm64/kvm/hyp/vhe')
-rw-r--r-- | arch/arm64/kvm/hyp/vhe/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kvm/hyp/vhe/Makefile b/arch/arm64/kvm/hyp/vhe/Makefile index 461e97c375cc..96bec0ecf9dd 100644 --- a/arch/arm64/kvm/hyp/vhe/Makefile +++ b/arch/arm64/kvm/hyp/vhe/Makefile @@ -8,4 +8,4 @@ ccflags-y := -D__KVM_VHE_HYPERVISOR__ obj-y := timer-sr.o sysreg-sr.o debug-sr.o switch.o tlb.o obj-y += ../vgic-v3-sr.o ../aarch32.o ../vgic-v2-cpuif-proxy.o ../entry.o \ - ../fpsimd.o ../hyp-entry.o + ../fpsimd.o ../hyp-entry.o ../exception.o |