KVM: Rename ack_flush() to ack_kick()
Make it use the same verb as in kvm_kick_many_cpus(). Signed-off-by: Lai Jiangshan <jiangshan.ljs@antgroup.com> Message-Id: <20220605063417.308311-5-jiangshanlai@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Родитель
fc10020ac9
Коммит
f24b44e48d
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче