aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2013-01-21 08:36:43 -0500
committerMarcelo Tosatti <mtosatti@redhat.com>2013-01-23 21:40:26 -0500
commitc5e97c80b5ddd6139bdadcbd44e263c2a3e7fae6 (patch)
tree05a80bed7b6148eef85c89dbd5ecaeae4f91148f
parent2f143240cb822c0d23ad591b89fe10e7c1f842f5 (diff)
KVM: VMX: if unrestricted guest is enabled vcpu state is always valid.
Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
-rw-r--r--arch/x86/kvm/vmx.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index edfbe94c622c..f942b201b345 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -3488,6 +3488,9 @@ static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3488 */ 3488 */
3489static bool guest_state_valid(struct kvm_vcpu *vcpu) 3489static bool guest_state_valid(struct kvm_vcpu *vcpu)
3490{ 3490{
3491 if (enable_unrestricted_guest)
3492 return true;
3493
3491 /* real mode guest state checks */ 3494 /* real mode guest state checks */
3492 if (!is_protmode(vcpu)) { 3495 if (!is_protmode(vcpu)) {
3493 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS)) 3496 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))