diff options
author | Sean Christopherson <seanjc@google.com> | 2022-01-28 03:51:49 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-02-10 21:47:16 +0300 |
commit | feee3d9d5b9fd38b469b51b5b89f1b359420ecaf (patch) | |
tree | 45256e28db5ed231af3dd1442827c4db1e588e6f /arch | |
parent | 2746a6b72ab9a92bd188c4ac3e4122ee1c18f754 (diff) | |
download | linux-feee3d9d5b9fd38b469b51b5b89f1b359420ecaf.tar.xz |
KVM: x86: Drop export for .tlb_flush_current() static_call key
Remove the export of kvm_x86_tlb_flush_current() as there are no longer
any users outside of common x86 code.
Signed-off-by: Sean Christopherson <seanjc@google.com>
Message-Id: <20220128005208.4008533-4-seanjc@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kvm/x86.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 7b451aacaa73..43b35dbbdb35 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c @@ -135,7 +135,6 @@ EXPORT_SYMBOL_GPL(kvm_x86_ops); #include <asm/kvm-x86-ops.h> EXPORT_STATIC_CALL_GPL(kvm_x86_get_cs_db_l_bits); EXPORT_STATIC_CALL_GPL(kvm_x86_cache_reg); -EXPORT_STATIC_CALL_GPL(kvm_x86_tlb_flush_current); static bool __read_mostly ignore_msrs = 0; module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR); |