diff options
author | Sean Christopherson <seanjc@google.com> | 2023-04-05 03:31:32 +0300 |
---|---|---|
committer | Sean Christopherson <seanjc@google.com> | 2023-04-11 01:17:29 +0300 |
commit | 8a1300ff95185b23baff9c226a001c269108f9ea (patch) | |
tree | 29b645f8a8dfeaeda866d1f558ef0aca8b3410c0 /arch/x86/kvm/kvm_onhyperv.h | |
parent | 40fa907e5a69edbae503a4937f8f487ed1ca92ea (diff) | |
download | linux-8a1300ff95185b23baff9c226a001c269108f9ea.tar.xz |
KVM: x86: Rename Hyper-V remote TLB hooks to match established scheme
Rename the Hyper-V hooks for TLB flushing to match the naming scheme used
by all the other TLB flushing hooks, e.g. in kvm_x86_ops, vendor code,
arch hooks from common code, etc.
Reviewed-by: David Matlack <dmatlack@google.com>
Reviewed-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Link: https://lore.kernel.org/r/20230405003133.419177-2-seanjc@google.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
Diffstat (limited to 'arch/x86/kvm/kvm_onhyperv.h')
-rw-r--r-- | arch/x86/kvm/kvm_onhyperv.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/kvm/kvm_onhyperv.h b/arch/x86/kvm/kvm_onhyperv.h index 287e98ef9df3..55d7fcb84cc1 100644 --- a/arch/x86/kvm/kvm_onhyperv.h +++ b/arch/x86/kvm/kvm_onhyperv.h @@ -7,9 +7,8 @@ #define __ARCH_X86_KVM_KVM_ONHYPERV_H__ #if IS_ENABLED(CONFIG_HYPERV) -int hv_remote_flush_tlb_with_range(struct kvm *kvm, - struct kvm_tlb_range *range); -int hv_remote_flush_tlb(struct kvm *kvm); +int hv_flush_remote_tlbs_range(struct kvm *kvm, struct kvm_tlb_range *range); +int hv_flush_remote_tlbs(struct kvm *kvm); void hv_track_root_tdp(struct kvm_vcpu *vcpu, hpa_t root_tdp); #else /* !CONFIG_HYPERV */ static inline void hv_track_root_tdp(struct kvm_vcpu *vcpu, hpa_t root_tdp) |