diff options
Diffstat (limited to 'arch/x86/kvm/svm.c')
-rw-r--r-- | arch/x86/kvm/svm.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index 587b99d37d44..56c9b6bd7655 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c | |||
@@ -3424,6 +3424,11 @@ static bool svm_rdtscp_supported(void) | |||
3424 | return false; | 3424 | return false; |
3425 | } | 3425 | } |
3426 | 3426 | ||
3427 | static bool svm_has_wbinvd_exit(void) | ||
3428 | { | ||
3429 | return true; | ||
3430 | } | ||
3431 | |||
3427 | static void svm_fpu_deactivate(struct kvm_vcpu *vcpu) | 3432 | static void svm_fpu_deactivate(struct kvm_vcpu *vcpu) |
3428 | { | 3433 | { |
3429 | struct vcpu_svm *svm = to_svm(vcpu); | 3434 | struct vcpu_svm *svm = to_svm(vcpu); |
@@ -3508,6 +3513,8 @@ static struct kvm_x86_ops svm_x86_ops = { | |||
3508 | .rdtscp_supported = svm_rdtscp_supported, | 3513 | .rdtscp_supported = svm_rdtscp_supported, |
3509 | 3514 | ||
3510 | .set_supported_cpuid = svm_set_supported_cpuid, | 3515 | .set_supported_cpuid = svm_set_supported_cpuid, |
3516 | |||
3517 | .has_wbinvd_exit = svm_has_wbinvd_exit, | ||
3511 | }; | 3518 | }; |
3512 | 3519 | ||
3513 | static int __init svm_init(void) | 3520 | static int __init svm_init(void) |