diff options
author | Wei Huang <wehuang@redhat.com> | 2015-06-19 14:44:45 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-06-19 18:16:29 +0300 |
commit | c6702c9dcfe72b63a85e7ae35533c11e2b7c1040 (patch) | |
tree | a11a8f2efa90f08fd295c99a3830747096580d5e /arch/x86/kvm/cpuid.c | |
parent | 6a39bbc5da27c3b2520876b71e4f7b50f5313503 (diff) | |
download | linux-c6702c9dcfe72b63a85e7ae35533c11e2b7c1040.tar.xz |
KVM: x86/vPMU: rename a few PMU functions
Before introducing a pmu.h header for them, make the naming more
consistent.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/cpuid.c')
-rw-r--r-- | arch/x86/kvm/cpuid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/cpuid.c b/arch/x86/kvm/cpuid.c index 9dadf8d67873..9d69f76aa0fa 100644 --- a/arch/x86/kvm/cpuid.c +++ b/arch/x86/kvm/cpuid.c @@ -111,7 +111,7 @@ int kvm_update_cpuid(struct kvm_vcpu *vcpu) /* Update physical-address width */ vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu); - kvm_pmu_cpuid_update(vcpu); + kvm_pmu_refresh(vcpu); return 0; } |