Commit ee2fc635 authored by Sean Christopherson's avatar Sean Christopherson Committed by Paolo Bonzini

KVM: VMX: Rename ____vmx_vcpu_run() to __vmx_vcpu_run()

...now that the name is no longer usurped by a defunct helper function.
Signed-off-by: default avatarSean Christopherson <sean.j.christopherson@intel.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent c823dd5c
...@@ -81,7 +81,7 @@ ENTRY(vmx_vmexit) ...@@ -81,7 +81,7 @@ ENTRY(vmx_vmexit)
ENDPROC(vmx_vmexit) ENDPROC(vmx_vmexit)
/** /**
* ____vmx_vcpu_run - Run a vCPU via a transition to VMX guest mode * __vmx_vcpu_run - Run a vCPU via a transition to VMX guest mode
* @vmx: struct vcpu_vmx * * @vmx: struct vcpu_vmx *
* @regs: unsigned long * (to guest registers) * @regs: unsigned long * (to guest registers)
* %RBX: VMCS launched status (non-zero indicates already launched) * %RBX: VMCS launched status (non-zero indicates already launched)
...@@ -89,7 +89,7 @@ ENDPROC(vmx_vmexit) ...@@ -89,7 +89,7 @@ ENDPROC(vmx_vmexit)
* Returns: * Returns:
* %RBX is 0 on VM-Exit, 1 on VM-Fail * %RBX is 0 on VM-Exit, 1 on VM-Fail
*/ */
ENTRY(____vmx_vcpu_run) ENTRY(__vmx_vcpu_run)
push %_ASM_BP push %_ASM_BP
mov %_ASM_SP, %_ASM_BP mov %_ASM_SP, %_ASM_BP
...@@ -198,4 +198,4 @@ ENTRY(____vmx_vcpu_run) ...@@ -198,4 +198,4 @@ ENTRY(____vmx_vcpu_run)
/* VM-Fail. Out-of-line to avoid a taken Jcc after VM-Exit. */ /* VM-Fail. Out-of-line to avoid a taken Jcc after VM-Exit. */
2: mov $1, %ebx 2: mov $1, %ebx
jmp 1b jmp 1b
ENDPROC(____vmx_vcpu_run) ENDPROC(__vmx_vcpu_run)
...@@ -6445,7 +6445,7 @@ static void vmx_vcpu_run(struct kvm_vcpu *vcpu) ...@@ -6445,7 +6445,7 @@ static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
write_cr2(vcpu->arch.cr2); write_cr2(vcpu->arch.cr2);
asm( asm(
"call ____vmx_vcpu_run \n\t" "call __vmx_vcpu_run \n\t"
: ASM_CALL_CONSTRAINT, "=b"(vmx->fail), : ASM_CALL_CONSTRAINT, "=b"(vmx->fail),
#ifdef CONFIG_X86_64 #ifdef CONFIG_X86_64
"=D"((int){0}), "=S"((int){0}) "=D"((int){0}), "=S"((int){0})
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment