Commit f566e09f authored by Avi Kivity's avatar Avi Kivity

KVM: VMX: Simplify vcpu_clear()

Now that smp_call_function_single() knows how to call a function on the
current cpu, there's no need to check explicitly.
Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent eae5ecb5
...@@ -227,11 +227,7 @@ static void vcpu_clear(struct vcpu_vmx *vmx) ...@@ -227,11 +227,7 @@ static void vcpu_clear(struct vcpu_vmx *vmx)
{ {
if (vmx->vcpu.cpu == -1) if (vmx->vcpu.cpu == -1)
return; return;
if (vmx->vcpu.cpu != raw_smp_processor_id()) smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 0, 1);
smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear,
vmx, 0, 1);
else
__vcpu_clear(vmx);
vmx->launched = 0; vmx->launched = 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