Commit f24b44e4 authored by Lai Jiangshan's avatar Lai Jiangshan Committed by Paolo Bonzini

KVM: Rename ack_flush() to ack_kick()

Make it use the same verb as in kvm_kick_many_cpus().
Signed-off-by: default avatarLai Jiangshan <jiangshan.ljs@antgroup.com>
Message-Id: <20220605063417.308311-5-jiangshanlai@gmail.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent fc10020a
......@@ -239,7 +239,7 @@ static bool kvm_request_needs_ipi(struct kvm_vcpu *vcpu, unsigned req)
return mode == IN_GUEST_MODE;
}
static void ack_flush(void *_completed)
static void ack_kick(void *_completed)
{
}
......@@ -248,7 +248,7 @@ static inline bool kvm_kick_many_cpus(struct cpumask *cpus, bool wait)
if (cpumask_empty(cpus))
return false;
smp_call_function_many(cpus, ack_flush, NULL, wait);
smp_call_function_many(cpus, ack_kick, NULL, wait);
return true;
}
......
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