]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
KVM/VMX: Use TEST %REG,%REG instead of CMP $0,%REG in vmenter.S
authorUros Bizjak <ubizjak@gmail.com>
Thu, 29 Oct 2020 14:04:57 +0000 (15:04 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Sat, 12 Dec 2020 00:00:57 +0000 (19:00 -0500)
Saves one byte in __vmx_vcpu_run for the same functionality.

Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Sean Christopherson <sean.j.christopherson@intel.com>
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Message-Id: <20201029140457.126965-1-ubizjak@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/vmx/vmenter.S

index 90ad7a6246e362dcc627b9d3008e27321da28b0d..e85aa5faa22d3f348d4db3d0b3c03da664929753 100644 (file)
@@ -132,7 +132,7 @@ SYM_FUNC_START(__vmx_vcpu_run)
        mov (%_ASM_SP), %_ASM_AX
 
        /* Check if vmlaunch or vmresume is needed */
-       cmpb $0, %bl
+       testb %bl, %bl
 
        /* Load guest registers.  Don't clobber flags. */
        mov VCPU_RCX(%_ASM_AX), %_ASM_CX