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.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index 54c0035a63f0..9f8532b1fa9a 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -4119,6 +4119,10 @@ static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
4119 } 4119 }
4120} 4120}
4121 4121
4122static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
4123{
4124}
4125
4122static struct kvm_x86_ops vmx_x86_ops = { 4126static struct kvm_x86_ops vmx_x86_ops = {
4123 .cpu_has_kvm_support = cpu_has_kvm_support, 4127 .cpu_has_kvm_support = cpu_has_kvm_support,
4124 .disabled_by_bios = vmx_disabled_by_bios, 4128 .disabled_by_bios = vmx_disabled_by_bios,
@@ -4191,6 +4195,8 @@ static struct kvm_x86_ops vmx_x86_ops = {
4191 .cpuid_update = vmx_cpuid_update, 4195 .cpuid_update = vmx_cpuid_update,
4192 4196
4193 .rdtscp_supported = vmx_rdtscp_supported, 4197 .rdtscp_supported = vmx_rdtscp_supported,
4198
4199 .set_supported_cpuid = vmx_set_supported_cpuid,
4194}; 4200};
4195 4201
4196static int __init vmx_init(void) 4202static int __init vmx_init(void)