diff options
Diffstat (limited to 'arch/powerpc/kvm/timing.h')
-rw-r--r-- | arch/powerpc/kvm/timing.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/kvm/timing.h b/arch/powerpc/kvm/timing.h index 1af7181fa2b5..bb13b1f3cd5a 100644 --- a/arch/powerpc/kvm/timing.h +++ b/arch/powerpc/kvm/timing.h | |||
@@ -45,7 +45,7 @@ static inline void kvmppc_set_exit_type(struct kvm_vcpu *vcpu, int type) {} | |||
45 | #endif /* CONFIG_KVM_EXIT_TIMING */ | 45 | #endif /* CONFIG_KVM_EXIT_TIMING */ |
46 | 46 | ||
47 | /* account the exit in kvm_stats */ | 47 | /* account the exit in kvm_stats */ |
48 | static inline void account_exit_stat(struct kvm_vcpu *vcpu, int type) | 48 | static inline void kvmppc_account_exit_stat(struct kvm_vcpu *vcpu, int type) |
49 | { | 49 | { |
50 | /* type has to be known at build time for optimization */ | 50 | /* type has to be known at build time for optimization */ |
51 | BUILD_BUG_ON(__builtin_constant_p(type)); | 51 | BUILD_BUG_ON(__builtin_constant_p(type)); |
@@ -93,10 +93,10 @@ static inline void account_exit_stat(struct kvm_vcpu *vcpu, int type) | |||
93 | } | 93 | } |
94 | 94 | ||
95 | /* wrapper to set exit time and account for it in kvm_stats */ | 95 | /* wrapper to set exit time and account for it in kvm_stats */ |
96 | static inline void account_exit(struct kvm_vcpu *vcpu, int type) | 96 | static inline void kvmppc_account_exit(struct kvm_vcpu *vcpu, int type) |
97 | { | 97 | { |
98 | kvmppc_set_exit_type(vcpu, type); | 98 | kvmppc_set_exit_type(vcpu, type); |
99 | account_exit_stat(vcpu, type); | 99 | kvmppc_account_exit_stat(vcpu, type); |
100 | } | 100 | } |
101 | 101 | ||
102 | #endif /* __POWERPC_KVM_EXITTIMING_H__ */ | 102 | #endif /* __POWERPC_KVM_EXITTIMING_H__ */ |