提交 eae5ecb5 编写于 作者: A Avi Kivity

KVM: VMX: Don't clear the vmcs if the vcpu is not loaded on any processor

Noted by Eddie Dong.
Signed-off-by: NAvi Kivity <avi@qumranet.com>
上级 b4c6abfe
......@@ -225,7 +225,9 @@ static void __vcpu_clear(void *arg)
static void vcpu_clear(struct vcpu_vmx *vmx)
{
if (vmx->vcpu.cpu != raw_smp_processor_id() && vmx->vcpu.cpu != -1)
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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册