|
@@ -761,6 +761,7 @@ static u64 construct_eptp(unsigned long root_hpa);
|
|
|
static void kvm_cpu_vmxon(u64 addr);
|
|
|
static void kvm_cpu_vmxoff(void);
|
|
|
static bool vmx_mpx_supported(void);
|
|
|
+static bool vmx_xsaves_supported(void);
|
|
|
static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
|
|
|
static void vmx_set_segment(struct kvm_vcpu *vcpu,
|
|
|
struct kvm_segment *var, int seg);
|
|
@@ -4337,6 +4338,7 @@ static void ept_set_mmio_spte_mask(void)
|
|
|
kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull);
|
|
|
}
|
|
|
|
|
|
+#define VMX_XSS_EXIT_BITMAP 0
|
|
|
/*
|
|
|
* Sets up the vmcs for emulated real mode.
|
|
|
*/
|
|
@@ -4446,6 +4448,9 @@ static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
|
|
|
vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
|
|
|
set_cr4_guest_host_mask(vmx);
|
|
|
|
|
|
+ if (vmx_xsaves_supported())
|
|
|
+ vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
|
|
|
+
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -5334,6 +5339,20 @@ static int handle_xsetbv(struct kvm_vcpu *vcpu)
|
|
|
return 1;
|
|
|
}
|
|
|
|
|
|
+static int handle_xsaves(struct kvm_vcpu *vcpu)
|
|
|
+{
|
|
|
+ skip_emulated_instruction(vcpu);
|
|
|
+ WARN(1, "this should never happen\n");
|
|
|
+ return 1;
|
|
|
+}
|
|
|
+
|
|
|
+static int handle_xrstors(struct kvm_vcpu *vcpu)
|
|
|
+{
|
|
|
+ skip_emulated_instruction(vcpu);
|
|
|
+ WARN(1, "this should never happen\n");
|
|
|
+ return 1;
|
|
|
+}
|
|
|
+
|
|
|
static int handle_apic_access(struct kvm_vcpu *vcpu)
|
|
|
{
|
|
|
if (likely(fasteoi)) {
|
|
@@ -6951,6 +6970,8 @@ static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
|
|
|
[EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
|
|
|
[EXIT_REASON_INVEPT] = handle_invept,
|
|
|
[EXIT_REASON_INVVPID] = handle_invvpid,
|
|
|
+ [EXIT_REASON_XSAVES] = handle_xsaves,
|
|
|
+ [EXIT_REASON_XRSTORS] = handle_xrstors,
|
|
|
};
|
|
|
|
|
|
static const int kvm_vmx_max_exit_handlers =
|