mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-30 15:50:10 -04:00
KVM: x86: Remove unused "flags" of kvm_pv_kick_cpu_op()
The "unsigned long flags" parameter of kvm_pv_kick_cpu_op() is not used, so remove it. No functional change intended. Signed-off-by: Jinrong Liang <cloudliang@tencent.com> Message-Id: <20220125095909.38122-20-cloudliang@tencent.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
committed by
Paolo Bonzini
parent
b56bd8e03c
commit
9d68c6f60e
@@ -8965,7 +8965,7 @@ static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
|
||||
*
|
||||
* @apicid - apicid of vcpu to be kicked.
|
||||
*/
|
||||
static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
|
||||
static void kvm_pv_kick_cpu_op(struct kvm *kvm, int apicid)
|
||||
{
|
||||
struct kvm_lapic_irq lapic_irq;
|
||||
|
||||
@@ -9084,7 +9084,7 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
|
||||
if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
|
||||
break;
|
||||
|
||||
kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
|
||||
kvm_pv_kick_cpu_op(vcpu->kvm, a1);
|
||||
kvm_sched_yield(vcpu, a1);
|
||||
ret = 0;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user