Commit 6c1c6e58 authored by Sean Christopherson's avatar Sean Christopherson Committed by Paolo Bonzini
Browse files

KVM: nVMX: Remove unused 'ops' param from nested_vmx_hardware_setup()



Remove a 'struct kvm_x86_ops' param that got left behind when the nested
ops were moved to their own struct.

Fixes: 33b22172 ("KVM: x86: move nested-related kvm_x86_ops to a separate struct")
Signed-off-by: default avatarSean Christopherson <sean.j.christopherson@intel.com>
Message-Id: <20200506204653.14683-1-sean.j.christopherson@intel.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent de182481
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -6421,8 +6421,7 @@ void nested_vmx_hardware_unsetup(void)
	}
}

__init int nested_vmx_hardware_setup(struct kvm_x86_ops *ops,
				     int (*exit_handlers[])(struct kvm_vcpu *))
__init int nested_vmx_hardware_setup(int (*exit_handlers[])(struct kvm_vcpu *))
{
	int i;

+1 −2
Original line number Diff line number Diff line
@@ -19,8 +19,7 @@ enum nvmx_vmentry_status {
void vmx_leave_nested(struct kvm_vcpu *vcpu);
void nested_vmx_setup_ctls_msrs(struct nested_vmx_msrs *msrs, u32 ept_caps);
void nested_vmx_hardware_unsetup(void);
__init int nested_vmx_hardware_setup(struct kvm_x86_ops *ops,
				     int (*exit_handlers[])(struct kvm_vcpu *));
__init int nested_vmx_hardware_setup(int (*exit_handlers[])(struct kvm_vcpu *));
void nested_vmx_set_vmcs_shadowing_bitmap(void);
void nested_vmx_free_vcpu(struct kvm_vcpu *vcpu);
enum nvmx_vmentry_status nested_vmx_enter_non_root_mode(struct kvm_vcpu *vcpu,
+1 −2
Original line number Diff line number Diff line
@@ -8119,8 +8119,7 @@ static __init int hardware_setup(void)
		nested_vmx_setup_ctls_msrs(&vmcs_config.nested,
					   vmx_capability.ept);

		r = nested_vmx_hardware_setup(&vmx_x86_ops,
					      kvm_vmx_exit_handlers);
		r = nested_vmx_hardware_setup(kvm_vmx_exit_handlers);
		if (r)
			return r;
	}