diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c index cc2844203c246afda087b18f05eabae0f4a48481..439873a25ccae6b97f0a394b523d4d8c9058e1ea 100644 --- a/drivers/kvm/vmx.c +++ b/drivers/kvm/vmx.c @@ -227,11 +227,7 @@ static void vcpu_clear(struct vcpu_vmx *vmx) { if (vmx->vcpu.cpu == -1) return; - if (vmx->vcpu.cpu != raw_smp_processor_id()) - smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, - vmx, 0, 1); - else - __vcpu_clear(vmx); + smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 0, 1); vmx->launched = 0; }