aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/vmx.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kvm/vmx.c')
-rw-r--r--arch/x86/kvm/vmx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index 9c3ffc5fde44..e71c731433ee 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -2659,7 +2659,9 @@ static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2659 msr |= MSR_IA32_APICBASE_BSP; 2659 msr |= MSR_IA32_APICBASE_BSP;
2660 kvm_set_apic_base(&vmx->vcpu, msr); 2660 kvm_set_apic_base(&vmx->vcpu, msr);
2661 2661
2662 fx_init(&vmx->vcpu); 2662 ret = fx_init(&vmx->vcpu);
2663 if (ret != 0)
2664 goto out;
2663 2665
2664 seg_setup(VCPU_SREG_CS); 2666 seg_setup(VCPU_SREG_CS);
2665 /* 2667 /*