mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-30 13:23:02 -04:00
Make svm_x86_ops globally visible in anticipation of modifying the struct in avic.c, and clean up the KVM-on-HyperV usage, as declaring _and using_ a local variable in a header that's only defined in one specific .c-file is all kinds of ugly. Opportunistically make svm_hv_enable_l2_tlb_flush() local to svm_onhyperv.c, as the only reason it was visible was due to the aforementioned shenanigans in svm_onhyperv.h. Alternatively, svm_x86_ops could be explicitly passed to svm_hv_hardware_setup() as a parameter. While that approach is slightly safer, e.g. avoids "hidden" updates, for better or worse, the Intel side of KVM has already chosen to expose vt_x86_ops (and vt_init_ops). Given that svm_x86_ops is only truly consumed by kvm_ops_update, the odds of a "hidden" update causing problems are extremely low. So, absent a strong reason to rework the VMX/TDX code, make svm_x86_ops visible, as having all updates use exactly "svm_x86_ops." is advantageous in its own right. No functional change intended. Link: https://lore.kernel.org/r/20250919215934.1590410-2-seanjc@google.com Signed-off-by: Sean Christopherson <seanjc@google.com>
64 lines
1.6 KiB
C
64 lines
1.6 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* KVM L1 hypervisor optimizations on Hyper-V for SVM.
|
|
*/
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
#include <linux/kvm_host.h>
|
|
|
|
#include <asm/mshyperv.h>
|
|
|
|
#include "svm.h"
|
|
#include "svm_ops.h"
|
|
|
|
#include "hyperv.h"
|
|
#include "kvm_onhyperv.h"
|
|
#include "svm_onhyperv.h"
|
|
|
|
static int svm_hv_enable_l2_tlb_flush(struct kvm_vcpu *vcpu)
|
|
{
|
|
struct hv_vmcb_enlightenments *hve;
|
|
hpa_t partition_assist_page = hv_get_partition_assist_page(vcpu);
|
|
|
|
if (partition_assist_page == INVALID_PAGE)
|
|
return -ENOMEM;
|
|
|
|
hve = &to_svm(vcpu)->vmcb->control.hv_enlightenments;
|
|
|
|
hve->partition_assist_page = partition_assist_page;
|
|
hve->hv_vm_id = (unsigned long)vcpu->kvm;
|
|
if (!hve->hv_enlightenments_control.nested_flush_hypercall) {
|
|
hve->hv_enlightenments_control.nested_flush_hypercall = 1;
|
|
vmcb_mark_dirty(to_svm(vcpu)->vmcb, HV_VMCB_NESTED_ENLIGHTENMENTS);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
__init void svm_hv_hardware_setup(void)
|
|
{
|
|
if (npt_enabled &&
|
|
ms_hyperv.nested_features & HV_X64_NESTED_ENLIGHTENED_TLB) {
|
|
pr_info(KBUILD_MODNAME ": Hyper-V enlightened NPT TLB flush enabled\n");
|
|
svm_x86_ops.flush_remote_tlbs = hv_flush_remote_tlbs;
|
|
svm_x86_ops.flush_remote_tlbs_range = hv_flush_remote_tlbs_range;
|
|
}
|
|
|
|
if (ms_hyperv.nested_features & HV_X64_NESTED_DIRECT_FLUSH) {
|
|
int cpu;
|
|
|
|
pr_info(KBUILD_MODNAME ": Hyper-V Direct TLB Flush enabled\n");
|
|
for_each_online_cpu(cpu) {
|
|
struct hv_vp_assist_page *vp_ap =
|
|
hv_get_vp_assist_page(cpu);
|
|
|
|
if (!vp_ap)
|
|
continue;
|
|
|
|
vp_ap->nested_control.features.directhypercall = 1;
|
|
}
|
|
svm_x86_ops.enable_l2_tlb_flush =
|
|
svm_hv_enable_l2_tlb_flush;
|
|
}
|
|
}
|