[PATCH v3 11/62] KVM: SVM: Drop vcpu_svm's pointless avic_backing_page field
Naveen N Rao
naveen at kernel.org
Fri Jun 13 07:44:47 PDT 2025
On Wed, Jun 11, 2025 at 03:45:14PM -0700, Sean Christopherson wrote:
> Drop vcpu_svm's avic_backing_page pointer and instead grab the physical
> address of KVM's vAPIC page directly from the source. Getting a physical
> address from a kernel virtual address is not an expensive operation, and
> getting the physical address from a struct page is *more* expensive for
> CONFIG_SPARSEMEM=y kernels. Regardless, none of the paths that consume
> the address are hot paths, i.e. shaving cycles is not a priority.
>
> Eliminating the "cache" means KVM doesn't have to worry about the cache
> being invalid, which will simplify a future fix when dealing with vCPU IDs
> that are too big.
>
> WARN if KVM attempts to allocate a vCPU's AVIC backing page without an
> in-kernel local APIC. avic_init_vcpu() bails early if the APIC is not
> in-kernel, and KVM disallows enabling an in-kernel APIC after vCPUs have
> been created, i.e. it should be impossible to reach
> avic_init_backing_page() without the vAPIC being allocated.
>
> Tested-by: Sairaj Kodilkar <sarunkod at amd.com>
> Signed-off-by: Sean Christopherson <seanjc at google.com>
> ---
> arch/x86/kvm/svm/avic.c | 6 ++----
> arch/x86/kvm/svm/svm.h | 1 -
> 2 files changed, 2 insertions(+), 5 deletions(-)
Reviewed-by: Naveen N Rao (AMD) <naveen at kernel.org>
- Naveen
More information about the linux-arm-kernel
mailing list