RAX is not touched by nested_vmx_check_vmentry_hw(), directly or indirectly via e.g. VMX_UPDATE_VMCS_HOST_RSP, vmx_vmenter or fixup. Remove it from the clobber list. Fixes: 52017608da33 ("KVM: nVMX: add option to perform early consistency checks via H/W") Signed-off-by: Sean Christopherson <sean.j.christopherson@xxxxxxxxx> --- arch/x86/kvm/vmx/nested.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kvm/vmx/nested.c b/arch/x86/kvm/vmx/nested.c index 99a972fac7e3..c847975d3724 100644 --- a/arch/x86/kvm/vmx/nested.c +++ b/arch/x86/kvm/vmx/nested.c @@ -2758,7 +2758,7 @@ static int nested_vmx_check_vmentry_hw(struct kvm_vcpu *vcpu) : "c"(vmx), VMX_UPDATE_VMCS_HOST_RSP_INPUTS, [launched]"i"(offsetof(struct vcpu_vmx, __launched)), [fail]"i"(offsetof(struct vcpu_vmx, fail)) - : "rax", "cc", "memory" + : "cc", "memory" ); preempt_enable(); -- 2.19.2