mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 04:32:03 +00:00
KVM: MMU: Only enable cr4_pge role in shadow mode
Two dimensional paging is only confused by it. Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
f6e2c02b6d
commit
5a41accd3f
@ -364,7 +364,7 @@ void kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
|
||||
}
|
||||
kvm_x86_ops->set_cr4(vcpu, cr4);
|
||||
vcpu->arch.cr4 = cr4;
|
||||
vcpu->arch.mmu.base_role.cr4_pge = !!(cr4 & X86_CR4_PGE);
|
||||
vcpu->arch.mmu.base_role.cr4_pge = (cr4 & X86_CR4_PGE) && !tdp_enabled;
|
||||
kvm_mmu_sync_global(vcpu);
|
||||
kvm_mmu_reset_context(vcpu);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user