KVM: x86: Drop pointless exports of kvm_arch_xxx() hooks

Drop the exporting of several kvm_arch_xxx() hooks that are only called
from arch-neutral code, i.e. that are only called from kvm.ko.

Link: https://lore.kernel.org/r/20250919003303.1355064-5-seanjc@google.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

authored by

Sean Christopherson and committed by
Paolo Bonzini
65604683 d273b52b

-3
-3
arch/x86/kvm/x86.c
··· 13922 13922 if (atomic_inc_return(&kvm->arch.noncoherent_dma_count) == 1) 13923 13923 kvm_noncoherent_dma_assignment_start_or_stop(kvm); 13924 13924 } 13925 - EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma); 13926 13925 13927 13926 void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm) 13928 13927 { 13929 13928 if (!atomic_dec_return(&kvm->arch.noncoherent_dma_count)) 13930 13929 kvm_noncoherent_dma_assignment_start_or_stop(kvm); 13931 13930 } 13932 - EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma); 13933 13931 13934 13932 bool kvm_arch_has_noncoherent_dma(struct kvm *kvm) 13935 13933 { ··· 13939 13941 { 13940 13942 return (vcpu->arch.msr_kvm_poll_control & 1) == 0; 13941 13943 } 13942 - EXPORT_SYMBOL_GPL(kvm_arch_no_poll); 13943 13944 13944 13945 #ifdef CONFIG_KVM_GUEST_MEMFD 13945 13946 /*