diff options
author | Avi Kivity <avi@qumranet.com> | 2007-09-30 05:02:53 -0400 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 10:52:49 -0500 |
commit | f566e09fc2c9f4164e1f0017c8c1c7a18bad7d72 (patch) | |
tree | 54ceab38b9426c02b1cf5bb4138eb5426cc9650f /drivers/kvm/vmx.c | |
parent | eae5ecb5b9043812968fae7ad9d74bf5e7a50245 (diff) |
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: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/vmx.c')
-rw-r--r-- | drivers/kvm/vmx.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c index cc2844203c24..439873a25cca 100644 --- a/drivers/kvm/vmx.c +++ b/drivers/kvm/vmx.c | |||
@@ -227,11 +227,7 @@ static void vcpu_clear(struct vcpu_vmx *vmx) | |||
227 | { | 227 | { |
228 | if (vmx->vcpu.cpu == -1) | 228 | if (vmx->vcpu.cpu == -1) |
229 | return; | 229 | return; |
230 | if (vmx->vcpu.cpu != raw_smp_processor_id()) | 230 | smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 0, 1); |
231 | smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, | ||
232 | vmx, 0, 1); | ||
233 | else | ||
234 | __vcpu_clear(vmx); | ||
235 | vmx->launched = 0; | 231 | vmx->launched = 0; |
236 | } | 232 | } |
237 | 233 | ||