Commit 9d68c6f6 authored by Jinrong Liang's avatar Jinrong Liang Committed by Paolo Bonzini

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: default avatarJinrong Liang <cloudliang@tencent.com>
Message-Id: <20220125095909.38122-20-cloudliang@tencent.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent b56bd8e0
...@@ -8965,7 +8965,7 @@ static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr, ...@@ -8965,7 +8965,7 @@ static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
* *
* @apicid - apicid of vcpu to be kicked. * @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; struct kvm_lapic_irq lapic_irq;
...@@ -9084,7 +9084,7 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu) ...@@ -9084,7 +9084,7 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT)) if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
break; break;
kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1); kvm_pv_kick_cpu_op(vcpu->kvm, a1);
kvm_sched_yield(vcpu, a1); kvm_sched_yield(vcpu, a1);
ret = 0; ret = 0;
break; break;
......
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