mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-16 12:14:06 +00:00
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:
parent
fc10020ac9
commit
f24b44e48d
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue