aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/kvm/pmu.h
diff options
context:
space:
mode:
authorGravatar Like Xu <likexu@tencent.com> 2022-05-18 21:25:05 +0800
committerGravatar Paolo Bonzini <pbonzini@redhat.com> 2022-06-08 04:48:48 -0400
commita40239b4cf33b2de872b04759c3e5ab87cc72a7f (patch)
tree8893ff71a6ce8b5f9d4bc3660df069c44a264f85 /arch/x86/kvm/pmu.h
parentKVM: x86/pmu: Extract check_pmu_event_filter() handling both GP and fixed cou... (diff)
downloadlinux-a40239b4cf33b2de872b04759c3e5ab87cc72a7f.tar.gz
linux-a40239b4cf33b2de872b04759c3e5ab87cc72a7f.tar.bz2
linux-a40239b4cf33b2de872b04759c3e5ab87cc72a7f.zip
KVM: x86/pmu: Pass only "struct kvm_pmc *pmc" to reprogram_counter()
Passing the reference "struct kvm_pmc *pmc" when creating pmc->perf_event is sufficient. This change helps to simplify the calling convention by replacing reprogram_{gp, fixed}_counter() with reprogram_counter() seamlessly. No functional change intended. Signed-off-by: Like Xu <likexu@tencent.com> Message-Id: <20220518132512.37864-5-likexu@tencent.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/pmu.h')
-rw-r--r--arch/x86/kvm/pmu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/pmu.h b/arch/x86/kvm/pmu.h
index 1398297ae6dc..1dd6be22cdb2 100644
--- a/arch/x86/kvm/pmu.h
+++ b/arch/x86/kvm/pmu.h
@@ -175,7 +175,7 @@ static inline void kvm_init_pmu_capability(void)
void reprogram_gp_counter(struct kvm_pmc *pmc, u64 eventsel);
void reprogram_fixed_counter(struct kvm_pmc *pmc, u8 ctrl, int fixed_idx);
-void reprogram_counter(struct kvm_pmu *pmu, int pmc_idx);
+void reprogram_counter(struct kvm_pmc *pmc);
void kvm_pmu_deliver_pmi(struct kvm_vcpu *vcpu);
void kvm_pmu_handle_event(struct kvm_vcpu *vcpu);