diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2015-10-22 08:32:18 +0100 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2015-12-14 11:30:40 +0000 |
commit | b97b66c14b96ab562e4fd516d804c5cd05c0529e (patch) | |
tree | 9ff79f98811d57e79e34781bfdf7c7938e8312b9 /arch/arm64/kvm/hyp/Makefile | |
parent | 8eb992674c9e69d57af199f36b6455dbc00ac9f9 (diff) | |
download | linux-b97b66c14b96ab562e4fd516d804c5cd05c0529e.tar.bz2 |
arm64: KVM: Implement guest entry
Contrary to the previous patch, the guest entry is fairly different
from its assembly counterpart, mostly because it is only concerned
with saving/restoring the GP registers, and nothing else.
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm64/kvm/hyp/Makefile')
-rw-r--r-- | arch/arm64/kvm/hyp/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/kvm/hyp/Makefile b/arch/arm64/kvm/hyp/Makefile index ec14cacc21a6..1e1ff06348cd 100644 --- a/arch/arm64/kvm/hyp/Makefile +++ b/arch/arm64/kvm/hyp/Makefile @@ -7,3 +7,4 @@ obj-$(CONFIG_KVM_ARM_HOST) += vgic-v3-sr.o obj-$(CONFIG_KVM_ARM_HOST) += timer-sr.o obj-$(CONFIG_KVM_ARM_HOST) += sysreg-sr.o obj-$(CONFIG_KVM_ARM_HOST) += debug-sr.o +obj-$(CONFIG_KVM_ARM_HOST) += entry.o |