aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/x86/kvm/vmx/vmenter.S
diff options
context:
space:
mode:
authorSean Christopherson <sean.j.christopherson@intel.com>2019-01-25 07:41:14 -0800
committerPaolo Bonzini <pbonzini@redhat.com>2019-02-20 22:48:15 +0100
commitee2fc635ef714b1d46da3616bbec972067f0d187 (patch)
treea1165682e4ed421d770ca793c988f16335088fd4 /arch/x86/kvm/vmx/vmenter.S
parentKVM: VMX: Fold __vmx_vcpu_run() back into vmx_vcpu_run() (diff)
downloadwireguard-linux-ee2fc635ef714b1d46da3616bbec972067f0d187.tar.xz
wireguard-linux-ee2fc635ef714b1d46da3616bbec972067f0d187.zip
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: Sean Christopherson <sean.j.christopherson@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/vmx/vmenter.S')
-rw-r--r--arch/x86/kvm/vmx/vmenter.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kvm/vmx/vmenter.S b/arch/x86/kvm/vmx/vmenter.S
index e64617f3b196..fa6e03b36348 100644
--- a/arch/x86/kvm/vmx/vmenter.S
+++ b/arch/x86/kvm/vmx/vmenter.S
@@ -81,7 +81,7 @@ ENTRY(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 *
* @regs: unsigned long * (to guest registers)
* %RBX: VMCS launched status (non-zero indicates already launched)
@@ -89,7 +89,7 @@ ENDPROC(vmx_vmexit)
* Returns:
* %RBX is 0 on VM-Exit, 1 on VM-Fail
*/
-ENTRY(____vmx_vcpu_run)
+ENTRY(__vmx_vcpu_run)
push %_ASM_BP
mov %_ASM_SP, %_ASM_BP
@@ -198,4 +198,4 @@ ENTRY(____vmx_vcpu_run)
/* VM-Fail. Out-of-line to avoid a taken Jcc after VM-Exit. */
2: mov $1, %ebx
jmp 1b
-ENDPROC(____vmx_vcpu_run)
+ENDPROC(__vmx_vcpu_run)