diff options
author | Christoffer Dall <christoffer.dall@linaro.org> | 2014-10-16 17:21:16 +0200 |
---|---|---|
committer | Christoffer Dall <christoffer.dall@linaro.org> | 2014-12-13 14:15:26 +0100 |
commit | b856a59141b1066d3c896a0d0231f84dabd040af (patch) | |
tree | af889ac7fce03290fd3c086bcb64471ec81689cb /arch/arm64/kvm/guest.c | |
parent | 3ad8b3de526a76fbe9466b366059e4958957b88f (diff) | |
download | op-kernel-dev-b856a59141b1066d3c896a0d0231f84dabd040af.zip op-kernel-dev-b856a59141b1066d3c896a0d0231f84dabd040af.tar.gz |
arm/arm64: KVM: Reset the HCR on each vcpu when resetting the vcpu
When userspace resets the vcpu using KVM_ARM_VCPU_INIT, we should also
reset the HCR, because we now modify the HCR dynamically to
enable/disable trapping of guest accesses to the VM registers.
This is crucial for reboot of VMs working since otherwise we will not be
doing the necessary cache maintenance operations when faulting in pages
with the guest MMU off.
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'arch/arm64/kvm/guest.c')
-rw-r--r-- | arch/arm64/kvm/guest.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm64/kvm/guest.c b/arch/arm64/kvm/guest.c index 7679469..84d5959 100644 --- a/arch/arm64/kvm/guest.c +++ b/arch/arm64/kvm/guest.c @@ -38,7 +38,6 @@ struct kvm_stats_debugfs_item debugfs_entries[] = { int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu) { - vcpu->arch.hcr_el2 = HCR_GUEST_FLAGS; return 0; } |