summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun Miao <jun.miao@intel.com>2026-01-05 09:54:23 +0300
committerSean Christopherson <seanjc@google.com>2026-01-14 04:36:44 +0300
commitde0dc71188ca54cfe13fac5c4334715fb37fe8ce (patch)
tree34402bf915cd93533144ba592605ce634311d5cf
parentead63640d4e72e6f6d464f4e31f7fecb79af8869 (diff)
downloadlinux-de0dc71188ca54cfe13fac5c4334715fb37fe8ce.tar.xz
KVM: x86: align the code with kvm_x86_call()
The use of static_call_cond() is essentially the same as static_call() on x86 (e.g. static_call() now handles a NULL pointer as a NOP), and then the kvm_x86_call() is added to improve code readability and maintainability for keeping consistent code style. Fixes 8d032b683c29 ("KVM: TDX: create/destroy VM structure") Link: https://lore.kernel.org/all/3916caa1dcd114301a49beafa5030eca396745c1.1679456900.git.jpoimboe@kernel.org/ Link: https://lore.kernel.org/r/20240507133103.15052-3-wei.w.wang@intel.com Signed-off-by: Jun Miao <jun.miao@intel.com> Link: https://patch.msgid.link/20260105065423.1870622-1-jun.miao@intel.com Signed-off-by: Sean Christopherson <seanjc@google.com>
-rw-r--r--arch/x86/kvm/x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index fe9d324da72a..386cdb775fd4 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -13307,7 +13307,7 @@ void kvm_arch_pre_destroy_vm(struct kvm *kvm)
#endif
kvm_mmu_pre_destroy_vm(kvm);
- static_call_cond(kvm_x86_vm_pre_destroy)(kvm);
+ kvm_x86_call(vm_pre_destroy)(kvm);
}
void kvm_arch_destroy_vm(struct kvm *kvm)