Commit 89604647 authored by Wei Wang's avatar Wei Wang Committed by Paolo Bonzini

KVM: x86: Introduce kvm_x86_call() to simplify static calls of kvm_x86_ops

Introduces kvm_x86_call(), to streamline the usage of static calls of
kvm_x86_ops. The current implementation of these calls is verbose and
could lead to alignment challenges. This makes the code susceptible to
exceeding the "80 columns per single line of code" limit as defined in
the coding-style document. Another issue with the existing implementation
is that the addition of kvm_x86_ prefix to hooks at the static_call sites
hinders code readability and navigation. kvm_x86_call() is added to
improve code readability and maintainability, while adhering to the coding
style guidelines.
Signed-off-by: default avatarWei Wang <wei.w.wang@intel.com>
Link: https://lore.kernel.org/r/20240507133103.15052-3-wei.w.wang@intel.comSigned-off-by: default avatarSean Christopherson <seanjc@google.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent f4854bf7
...@@ -1874,6 +1874,8 @@ extern bool __read_mostly allow_smaller_maxphyaddr; ...@@ -1874,6 +1874,8 @@ extern bool __read_mostly allow_smaller_maxphyaddr;
extern bool __read_mostly enable_apicv; extern bool __read_mostly enable_apicv;
extern struct kvm_x86_ops kvm_x86_ops; extern struct kvm_x86_ops kvm_x86_ops;
#define kvm_x86_call(func) static_call(kvm_x86_##func)
#define KVM_X86_OP(func) \ #define KVM_X86_OP(func) \
DECLARE_STATIC_CALL(kvm_x86_##func, *(((struct kvm_x86_ops *)0)->func)); DECLARE_STATIC_CALL(kvm_x86_##func, *(((struct kvm_x86_ops *)0)->func));
#define KVM_X86_OP_OPTIONAL KVM_X86_OP #define KVM_X86_OP_OPTIONAL KVM_X86_OP
...@@ -1897,7 +1899,7 @@ void kvm_arch_free_vm(struct kvm *kvm); ...@@ -1897,7 +1899,7 @@ void kvm_arch_free_vm(struct kvm *kvm);
static inline int kvm_arch_flush_remote_tlbs(struct kvm *kvm) static inline int kvm_arch_flush_remote_tlbs(struct kvm *kvm)
{ {
if (kvm_x86_ops.flush_remote_tlbs && if (kvm_x86_ops.flush_remote_tlbs &&
!static_call(kvm_x86_flush_remote_tlbs)(kvm)) !kvm_x86_call(flush_remote_tlbs)(kvm))
return 0; return 0;
else else
return -ENOTSUPP; return -ENOTSUPP;
...@@ -1910,7 +1912,7 @@ static inline int kvm_arch_flush_remote_tlbs_range(struct kvm *kvm, gfn_t gfn, ...@@ -1910,7 +1912,7 @@ static inline int kvm_arch_flush_remote_tlbs_range(struct kvm *kvm, gfn_t gfn,
if (!kvm_x86_ops.flush_remote_tlbs_range) if (!kvm_x86_ops.flush_remote_tlbs_range)
return -EOPNOTSUPP; return -EOPNOTSUPP;
return static_call(kvm_x86_flush_remote_tlbs_range)(kvm, gfn, nr_pages); return kvm_x86_call(flush_remote_tlbs_range)(kvm, gfn, nr_pages);
} }
#endif /* CONFIG_HYPERV */ #endif /* CONFIG_HYPERV */
...@@ -2309,12 +2311,12 @@ static inline bool kvm_irq_is_postable(struct kvm_lapic_irq *irq) ...@@ -2309,12 +2311,12 @@ static inline bool kvm_irq_is_postable(struct kvm_lapic_irq *irq)
static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
{ {
static_call(kvm_x86_vcpu_blocking)(vcpu); kvm_x86_call(vcpu_blocking)(vcpu);
} }
static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
{ {
static_call(kvm_x86_vcpu_unblocking)(vcpu); kvm_x86_call(vcpu_unblocking)(vcpu);
} }
static inline int kvm_cpu_get_apicid(int mps_cpu) static inline int kvm_cpu_get_apicid(int mps_cpu)
......
...@@ -400,7 +400,7 @@ static void kvm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu) ...@@ -400,7 +400,7 @@ static void kvm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
vcpu->arch.cpuid_nent)); vcpu->arch.cpuid_nent));
/* Invoke the vendor callback only after the above state is updated. */ /* Invoke the vendor callback only after the above state is updated. */
static_call(kvm_x86_vcpu_after_set_cpuid)(vcpu); kvm_x86_call(vcpu_after_set_cpuid)(vcpu);
/* /*
* Except for the MMU, which needs to do its thing any vendor specific * Except for the MMU, which needs to do its thing any vendor specific
......
...@@ -1417,7 +1417,7 @@ static int kvm_hv_set_msr_pw(struct kvm_vcpu *vcpu, u32 msr, u64 data, ...@@ -1417,7 +1417,7 @@ static int kvm_hv_set_msr_pw(struct kvm_vcpu *vcpu, u32 msr, u64 data,
} }
/* vmcall/vmmcall */ /* vmcall/vmmcall */
static_call(kvm_x86_patch_hypercall)(vcpu, instructions + i); kvm_x86_call(patch_hypercall)(vcpu, instructions + i);
i += 3; i += 3;
/* ret */ /* ret */
...@@ -1986,7 +1986,7 @@ int kvm_hv_vcpu_flush_tlb(struct kvm_vcpu *vcpu) ...@@ -1986,7 +1986,7 @@ int kvm_hv_vcpu_flush_tlb(struct kvm_vcpu *vcpu)
*/ */
gva = entries[i] & PAGE_MASK; gva = entries[i] & PAGE_MASK;
for (j = 0; j < (entries[i] & ~PAGE_MASK) + 1; j++) for (j = 0; j < (entries[i] & ~PAGE_MASK) + 1; j++)
static_call(kvm_x86_flush_tlb_gva)(vcpu, gva + j * PAGE_SIZE); kvm_x86_call(flush_tlb_gva)(vcpu, gva + j * PAGE_SIZE);
++vcpu->stat.tlb_flush; ++vcpu->stat.tlb_flush;
} }
...@@ -2527,7 +2527,7 @@ int kvm_hv_hypercall(struct kvm_vcpu *vcpu) ...@@ -2527,7 +2527,7 @@ int kvm_hv_hypercall(struct kvm_vcpu *vcpu)
* hypercall generates UD from non zero cpl and real mode * hypercall generates UD from non zero cpl and real mode
* per HYPER-V spec * per HYPER-V spec
*/ */
if (static_call(kvm_x86_get_cpl)(vcpu) != 0 || !is_protmode(vcpu)) { if (kvm_x86_call(get_cpl)(vcpu) != 0 || !is_protmode(vcpu)) {
kvm_queue_exception(vcpu, UD_VECTOR); kvm_queue_exception(vcpu, UD_VECTOR);
return 1; return 1;
} }
......
...@@ -157,7 +157,7 @@ void __kvm_migrate_timers(struct kvm_vcpu *vcpu) ...@@ -157,7 +157,7 @@ void __kvm_migrate_timers(struct kvm_vcpu *vcpu)
{ {
__kvm_migrate_apic_timer(vcpu); __kvm_migrate_apic_timer(vcpu);
__kvm_migrate_pit_timer(vcpu); __kvm_migrate_pit_timer(vcpu);
static_call(kvm_x86_migrate_timers)(vcpu); kvm_x86_call(migrate_timers)(vcpu);
} }
bool kvm_arch_irqfd_allowed(struct kvm *kvm, struct kvm_irqfd *args) bool kvm_arch_irqfd_allowed(struct kvm *kvm, struct kvm_irqfd *args)
......
...@@ -98,7 +98,7 @@ static inline unsigned long kvm_register_read_raw(struct kvm_vcpu *vcpu, int reg ...@@ -98,7 +98,7 @@ static inline unsigned long kvm_register_read_raw(struct kvm_vcpu *vcpu, int reg
return 0; return 0;
if (!kvm_register_is_available(vcpu, reg)) if (!kvm_register_is_available(vcpu, reg))
static_call(kvm_x86_cache_reg)(vcpu, reg); kvm_x86_call(cache_reg)(vcpu, reg);
return vcpu->arch.regs[reg]; return vcpu->arch.regs[reg];
} }
...@@ -138,7 +138,7 @@ static inline u64 kvm_pdptr_read(struct kvm_vcpu *vcpu, int index) ...@@ -138,7 +138,7 @@ static inline u64 kvm_pdptr_read(struct kvm_vcpu *vcpu, int index)
might_sleep(); /* on svm */ might_sleep(); /* on svm */
if (!kvm_register_is_available(vcpu, VCPU_EXREG_PDPTR)) if (!kvm_register_is_available(vcpu, VCPU_EXREG_PDPTR))
static_call(kvm_x86_cache_reg)(vcpu, VCPU_EXREG_PDPTR); kvm_x86_call(cache_reg)(vcpu, VCPU_EXREG_PDPTR);
return vcpu->arch.walk_mmu->pdptrs[index]; return vcpu->arch.walk_mmu->pdptrs[index];
} }
...@@ -153,7 +153,7 @@ static inline ulong kvm_read_cr0_bits(struct kvm_vcpu *vcpu, ulong mask) ...@@ -153,7 +153,7 @@ static inline ulong kvm_read_cr0_bits(struct kvm_vcpu *vcpu, ulong mask)
ulong tmask = mask & KVM_POSSIBLE_CR0_GUEST_BITS; ulong tmask = mask & KVM_POSSIBLE_CR0_GUEST_BITS;
if ((tmask & vcpu->arch.cr0_guest_owned_bits) && if ((tmask & vcpu->arch.cr0_guest_owned_bits) &&
!kvm_register_is_available(vcpu, VCPU_EXREG_CR0)) !kvm_register_is_available(vcpu, VCPU_EXREG_CR0))
static_call(kvm_x86_cache_reg)(vcpu, VCPU_EXREG_CR0); kvm_x86_call(cache_reg)(vcpu, VCPU_EXREG_CR0);
return vcpu->arch.cr0 & mask; return vcpu->arch.cr0 & mask;
} }
...@@ -175,7 +175,7 @@ static inline ulong kvm_read_cr4_bits(struct kvm_vcpu *vcpu, ulong mask) ...@@ -175,7 +175,7 @@ static inline ulong kvm_read_cr4_bits(struct kvm_vcpu *vcpu, ulong mask)
ulong tmask = mask & KVM_POSSIBLE_CR4_GUEST_BITS; ulong tmask = mask & KVM_POSSIBLE_CR4_GUEST_BITS;
if ((tmask & vcpu->arch.cr4_guest_owned_bits) && if ((tmask & vcpu->arch.cr4_guest_owned_bits) &&
!kvm_register_is_available(vcpu, VCPU_EXREG_CR4)) !kvm_register_is_available(vcpu, VCPU_EXREG_CR4))
static_call(kvm_x86_cache_reg)(vcpu, VCPU_EXREG_CR4); kvm_x86_call(cache_reg)(vcpu, VCPU_EXREG_CR4);
return vcpu->arch.cr4 & mask; return vcpu->arch.cr4 & mask;
} }
...@@ -190,7 +190,7 @@ static __always_inline bool kvm_is_cr4_bit_set(struct kvm_vcpu *vcpu, ...@@ -190,7 +190,7 @@ static __always_inline bool kvm_is_cr4_bit_set(struct kvm_vcpu *vcpu,
static inline ulong kvm_read_cr3(struct kvm_vcpu *vcpu) static inline ulong kvm_read_cr3(struct kvm_vcpu *vcpu)
{ {
if (!kvm_register_is_available(vcpu, VCPU_EXREG_CR3)) if (!kvm_register_is_available(vcpu, VCPU_EXREG_CR3))
static_call(kvm_x86_cache_reg)(vcpu, VCPU_EXREG_CR3); kvm_x86_call(cache_reg)(vcpu, VCPU_EXREG_CR3);
return vcpu->arch.cr3; return vcpu->arch.cr3;
} }
......
...@@ -738,8 +738,8 @@ static inline void apic_clear_irr(int vec, struct kvm_lapic *apic) ...@@ -738,8 +738,8 @@ static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
if (unlikely(apic->apicv_active)) { if (unlikely(apic->apicv_active)) {
/* need to update RVI */ /* need to update RVI */
kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR); kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
static_call(kvm_x86_hwapic_irr_update)(apic->vcpu, kvm_x86_call(hwapic_irr_update)(apic->vcpu,
apic_find_highest_irr(apic)); apic_find_highest_irr(apic));
} else { } else {
apic->irr_pending = false; apic->irr_pending = false;
kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR); kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
...@@ -765,7 +765,7 @@ static inline void apic_set_isr(int vec, struct kvm_lapic *apic) ...@@ -765,7 +765,7 @@ static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
* just set SVI. * just set SVI.
*/ */
if (unlikely(apic->apicv_active)) if (unlikely(apic->apicv_active))
static_call(kvm_x86_hwapic_isr_update)(vec); kvm_x86_call(hwapic_isr_update)(vec);
else { else {
++apic->isr_count; ++apic->isr_count;
BUG_ON(apic->isr_count > MAX_APIC_VECTOR); BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
...@@ -810,7 +810,7 @@ static inline void apic_clear_isr(int vec, struct kvm_lapic *apic) ...@@ -810,7 +810,7 @@ static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
* and must be left alone. * and must be left alone.
*/ */
if (unlikely(apic->apicv_active)) if (unlikely(apic->apicv_active))
static_call(kvm_x86_hwapic_isr_update)(apic_find_highest_isr(apic)); kvm_x86_call(hwapic_isr_update)(apic_find_highest_isr(apic));
else { else {
--apic->isr_count; --apic->isr_count;
BUG_ON(apic->isr_count < 0); BUG_ON(apic->isr_count < 0);
...@@ -946,7 +946,7 @@ static int apic_has_interrupt_for_ppr(struct kvm_lapic *apic, u32 ppr) ...@@ -946,7 +946,7 @@ static int apic_has_interrupt_for_ppr(struct kvm_lapic *apic, u32 ppr)
{ {
int highest_irr; int highest_irr;
if (kvm_x86_ops.sync_pir_to_irr) if (kvm_x86_ops.sync_pir_to_irr)
highest_irr = static_call(kvm_x86_sync_pir_to_irr)(apic->vcpu); highest_irr = kvm_x86_call(sync_pir_to_irr)(apic->vcpu);
else else
highest_irr = apic_find_highest_irr(apic); highest_irr = apic_find_highest_irr(apic);
if (highest_irr == -1 || (highest_irr & 0xF0) <= ppr) if (highest_irr == -1 || (highest_irr & 0xF0) <= ppr)
...@@ -1338,8 +1338,8 @@ static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode, ...@@ -1338,8 +1338,8 @@ static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
apic->regs + APIC_TMR); apic->regs + APIC_TMR);
} }
static_call(kvm_x86_deliver_interrupt)(apic, delivery_mode, kvm_x86_call(deliver_interrupt)(apic, delivery_mode,
trig_mode, vector); trig_mode, vector);
break; break;
case APIC_DM_REMRD: case APIC_DM_REMRD:
...@@ -2105,7 +2105,7 @@ static void cancel_hv_timer(struct kvm_lapic *apic) ...@@ -2105,7 +2105,7 @@ static void cancel_hv_timer(struct kvm_lapic *apic)
{ {
WARN_ON(preemptible()); WARN_ON(preemptible());
WARN_ON(!apic->lapic_timer.hv_timer_in_use); WARN_ON(!apic->lapic_timer.hv_timer_in_use);
static_call(kvm_x86_cancel_hv_timer)(apic->vcpu); kvm_x86_call(cancel_hv_timer)(apic->vcpu);
apic->lapic_timer.hv_timer_in_use = false; apic->lapic_timer.hv_timer_in_use = false;
} }
...@@ -2122,7 +2122,7 @@ static bool start_hv_timer(struct kvm_lapic *apic) ...@@ -2122,7 +2122,7 @@ static bool start_hv_timer(struct kvm_lapic *apic)
if (!ktimer->tscdeadline) if (!ktimer->tscdeadline)
return false; return false;
if (static_call(kvm_x86_set_hv_timer)(vcpu, ktimer->tscdeadline, &expired)) if (kvm_x86_call(set_hv_timer)(vcpu, ktimer->tscdeadline, &expired))
return false; return false;
ktimer->hv_timer_in_use = true; ktimer->hv_timer_in_use = true;
...@@ -2577,7 +2577,7 @@ void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value) ...@@ -2577,7 +2577,7 @@ void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) { if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) {
kvm_make_request(KVM_REQ_APICV_UPDATE, vcpu); kvm_make_request(KVM_REQ_APICV_UPDATE, vcpu);
static_call(kvm_x86_set_virtual_apic_mode)(vcpu); kvm_x86_call(set_virtual_apic_mode)(vcpu);
} }
apic->base_address = apic->vcpu->arch.apic_base & apic->base_address = apic->vcpu->arch.apic_base &
...@@ -2687,7 +2687,7 @@ void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event) ...@@ -2687,7 +2687,7 @@ void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
u64 msr_val; u64 msr_val;
int i; int i;
static_call(kvm_x86_apicv_pre_state_restore)(vcpu); kvm_x86_call(apicv_pre_state_restore)(vcpu);
if (!init_event) { if (!init_event) {
msr_val = APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE; msr_val = APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE;
...@@ -2742,9 +2742,9 @@ void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event) ...@@ -2742,9 +2742,9 @@ void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
vcpu->arch.pv_eoi.msr_val = 0; vcpu->arch.pv_eoi.msr_val = 0;
apic_update_ppr(apic); apic_update_ppr(apic);
if (apic->apicv_active) { if (apic->apicv_active) {
static_call(kvm_x86_apicv_post_state_restore)(vcpu); kvm_x86_call(apicv_post_state_restore)(vcpu);
static_call(kvm_x86_hwapic_irr_update)(vcpu, -1); kvm_x86_call(hwapic_irr_update)(vcpu, -1);
static_call(kvm_x86_hwapic_isr_update)(-1); kvm_x86_call(hwapic_isr_update)(-1);
} }
vcpu->arch.apic_arb_prio = 0; vcpu->arch.apic_arb_prio = 0;
...@@ -2840,7 +2840,7 @@ int kvm_create_lapic(struct kvm_vcpu *vcpu) ...@@ -2840,7 +2840,7 @@ int kvm_create_lapic(struct kvm_vcpu *vcpu)
vcpu->arch.apic = apic; vcpu->arch.apic = apic;
if (kvm_x86_ops.alloc_apic_backing_page) if (kvm_x86_ops.alloc_apic_backing_page)
apic->regs = static_call(kvm_x86_alloc_apic_backing_page)(vcpu); apic->regs = kvm_x86_call(alloc_apic_backing_page)(vcpu);
else else
apic->regs = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT); apic->regs = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT);
if (!apic->regs) { if (!apic->regs) {
...@@ -3019,7 +3019,7 @@ int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s) ...@@ -3019,7 +3019,7 @@ int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
struct kvm_lapic *apic = vcpu->arch.apic; struct kvm_lapic *apic = vcpu->arch.apic;
int r; int r;
static_call(kvm_x86_apicv_pre_state_restore)(vcpu); kvm_x86_call(apicv_pre_state_restore)(vcpu);
kvm_lapic_set_base(vcpu, vcpu->arch.apic_base); kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
/* set SPIV separately to get count of SW disabled APICs right */ /* set SPIV separately to get count of SW disabled APICs right */
...@@ -3046,9 +3046,10 @@ int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s) ...@@ -3046,9 +3046,10 @@ int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
kvm_lapic_set_reg(apic, APIC_TMCCT, 0); kvm_lapic_set_reg(apic, APIC_TMCCT, 0);
kvm_apic_update_apicv(vcpu); kvm_apic_update_apicv(vcpu);
if (apic->apicv_active) { if (apic->apicv_active) {
static_call(kvm_x86_apicv_post_state_restore)(vcpu); kvm_x86_call(apicv_post_state_restore)(vcpu);
static_call(kvm_x86_hwapic_irr_update)(vcpu, apic_find_highest_irr(apic)); kvm_x86_call(hwapic_irr_update)(vcpu,
static_call(kvm_x86_hwapic_isr_update)(apic_find_highest_isr(apic)); apic_find_highest_irr(apic));
kvm_x86_call(hwapic_isr_update)(apic_find_highest_isr(apic));
} }
kvm_make_request(KVM_REQ_EVENT, vcpu); kvm_make_request(KVM_REQ_EVENT, vcpu);
if (ioapic_in_kernel(vcpu->kvm)) if (ioapic_in_kernel(vcpu->kvm))
...@@ -3336,7 +3337,8 @@ int kvm_apic_accept_events(struct kvm_vcpu *vcpu) ...@@ -3336,7 +3337,8 @@ int kvm_apic_accept_events(struct kvm_vcpu *vcpu)
/* evaluate pending_events before reading the vector */ /* evaluate pending_events before reading the vector */
smp_rmb(); smp_rmb();
sipi_vector = apic->sipi_vector; sipi_vector = apic->sipi_vector;
static_call(kvm_x86_vcpu_deliver_sipi_vector)(vcpu, sipi_vector); kvm_x86_call(vcpu_deliver_sipi_vector)(vcpu,
sipi_vector);
vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
} }
} }
......
...@@ -235,7 +235,7 @@ static inline bool kvm_apic_has_pending_init_or_sipi(struct kvm_vcpu *vcpu) ...@@ -235,7 +235,7 @@ static inline bool kvm_apic_has_pending_init_or_sipi(struct kvm_vcpu *vcpu)
static inline bool kvm_apic_init_sipi_allowed(struct kvm_vcpu *vcpu) static inline bool kvm_apic_init_sipi_allowed(struct kvm_vcpu *vcpu)
{ {
return !is_smm(vcpu) && return !is_smm(vcpu) &&
!static_call(kvm_x86_apic_init_signal_blocked)(vcpu); !kvm_x86_call(apic_init_signal_blocked)(vcpu);
} }
static inline bool kvm_lowest_prio_delivery(struct kvm_lapic_irq *irq) static inline bool kvm_lowest_prio_delivery(struct kvm_lapic_irq *irq)
......
...@@ -138,8 +138,8 @@ static inline void kvm_mmu_load_pgd(struct kvm_vcpu *vcpu) ...@@ -138,8 +138,8 @@ static inline void kvm_mmu_load_pgd(struct kvm_vcpu *vcpu)
if (!VALID_PAGE(root_hpa)) if (!VALID_PAGE(root_hpa))
return; return;
static_call(kvm_x86_load_mmu_pgd)(vcpu, root_hpa, kvm_x86_call(load_mmu_pgd)(vcpu, root_hpa,
vcpu->arch.mmu->root_role.level); vcpu->arch.mmu->root_role.level);
} }
static inline void kvm_mmu_refresh_passthrough_bits(struct kvm_vcpu *vcpu, static inline void kvm_mmu_refresh_passthrough_bits(struct kvm_vcpu *vcpu,
...@@ -174,7 +174,7 @@ static inline u8 permission_fault(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, ...@@ -174,7 +174,7 @@ static inline u8 permission_fault(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
{ {
/* strip nested paging fault error codes */ /* strip nested paging fault error codes */
unsigned int pfec = access; unsigned int pfec = access;
unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu); unsigned long rflags = kvm_x86_call(get_rflags)(vcpu);
/* /*
* For explicit supervisor accesses, SMAP is disabled if EFLAGS.AC = 1. * For explicit supervisor accesses, SMAP is disabled if EFLAGS.AC = 1.
......
...@@ -4331,7 +4331,7 @@ static u8 kvm_max_private_mapping_level(struct kvm *kvm, kvm_pfn_t pfn, ...@@ -4331,7 +4331,7 @@ static u8 kvm_max_private_mapping_level(struct kvm *kvm, kvm_pfn_t pfn,
if (max_level == PG_LEVEL_4K) if (max_level == PG_LEVEL_4K)
return PG_LEVEL_4K; return PG_LEVEL_4K;
req_max_level = static_call(kvm_x86_private_max_mapping_level)(kvm, pfn); req_max_level = kvm_x86_call(private_max_mapping_level)(kvm, pfn);
if (req_max_level) if (req_max_level)
max_level = min(max_level, req_max_level); max_level = min(max_level, req_max_level);
...@@ -5741,7 +5741,7 @@ int kvm_mmu_load(struct kvm_vcpu *vcpu) ...@@ -5741,7 +5741,7 @@ int kvm_mmu_load(struct kvm_vcpu *vcpu)
* stale entries. Flushing on alloc also allows KVM to skip the TLB * stale entries. Flushing on alloc also allows KVM to skip the TLB
* flush when freeing a root (see kvm_tdp_mmu_put_root()). * flush when freeing a root (see kvm_tdp_mmu_put_root()).
*/ */
static_call(kvm_x86_flush_tlb_current)(vcpu); kvm_x86_call(flush_tlb_current)(vcpu);
out: out:
return r; return r;
} }
...@@ -6113,7 +6113,7 @@ void kvm_mmu_invalidate_addr(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, ...@@ -6113,7 +6113,7 @@ void kvm_mmu_invalidate_addr(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
if (is_noncanonical_address(addr, vcpu)) if (is_noncanonical_address(addr, vcpu))
return; return;
static_call(kvm_x86_flush_tlb_gva)(vcpu, addr); kvm_x86_call(flush_tlb_gva)(vcpu, addr);
} }
if (!mmu->sync_spte) if (!mmu->sync_spte)
......
...@@ -210,8 +210,8 @@ bool make_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, ...@@ -210,8 +210,8 @@ bool make_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
spte |= PT_PAGE_SIZE_MASK; spte |= PT_PAGE_SIZE_MASK;
if (shadow_memtype_mask) if (shadow_memtype_mask)
spte |= static_call(kvm_x86_get_mt_mask)(vcpu, gfn, spte |= kvm_x86_call(get_mt_mask)(vcpu, gfn,
kvm_is_mmio_pfn(pfn)); kvm_is_mmio_pfn(pfn));
if (host_writable) if (host_writable)
spte |= shadow_host_writable_mask; spte |= shadow_host_writable_mask;
else else
......
...@@ -596,7 +596,7 @@ int kvm_pmu_rdpmc(struct kvm_vcpu *vcpu, unsigned idx, u64 *data) ...@@ -596,7 +596,7 @@ int kvm_pmu_rdpmc(struct kvm_vcpu *vcpu, unsigned idx, u64 *data)
return 1; return 1;
if (!kvm_is_cr4_bit_set(vcpu, X86_CR4_PCE) && if (!kvm_is_cr4_bit_set(vcpu, X86_CR4_PCE) &&
(static_call(kvm_x86_get_cpl)(vcpu) != 0) && (kvm_x86_call(get_cpl)(vcpu) != 0) &&
kvm_is_cr0_bit_set(vcpu, X86_CR0_PE)) kvm_is_cr0_bit_set(vcpu, X86_CR0_PE))
return 1; return 1;
...@@ -857,7 +857,8 @@ static inline bool cpl_is_matched(struct kvm_pmc *pmc) ...@@ -857,7 +857,8 @@ static inline bool cpl_is_matched(struct kvm_pmc *pmc)
if (select_os == select_user) if (select_os == select_user)
return select_os; return select_os;
return (static_call(kvm_x86_get_cpl)(pmc->vcpu) == 0) ? select_os : select_user; return (kvm_x86_call(get_cpl)(pmc->vcpu) == 0) ? select_os :
select_user;
} }
void kvm_pmu_trigger_event(struct kvm_vcpu *vcpu, u64 eventsel) void kvm_pmu_trigger_event(struct kvm_vcpu *vcpu, u64 eventsel)
......
...@@ -200,11 +200,11 @@ static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, ...@@ -200,11 +200,11 @@ static void enter_smm_save_state_32(struct kvm_vcpu *vcpu,
enter_smm_save_seg_32(vcpu, &smram->tr, &smram->tr_sel, VCPU_SREG_TR); enter_smm_save_seg_32(vcpu, &smram->tr, &smram->tr_sel, VCPU_SREG_TR);
enter_smm_save_seg_32(vcpu, &smram->ldtr, &smram->ldtr_sel, VCPU_SREG_LDTR); enter_smm_save_seg_32(vcpu, &smram->ldtr, &smram->ldtr_sel, VCPU_SREG_LDTR);
static_call(kvm_x86_get_gdt)(vcpu, &dt); kvm_x86_call(get_gdt)(vcpu, &dt);
smram->gdtr.base = dt.address; smram->gdtr.base = dt.address;
smram->gdtr.limit = dt.size; smram->gdtr.limit = dt.size;
static_call(kvm_x86_get_idt)(vcpu, &dt); kvm_x86_call(get_idt)(vcpu, &dt);
smram->idtr.base = dt.address; smram->idtr.base = dt.address;
smram->idtr.limit = dt.size; smram->idtr.limit = dt.size;
...@@ -220,7 +220,7 @@ static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, ...@@ -220,7 +220,7 @@ static void enter_smm_save_state_32(struct kvm_vcpu *vcpu,
smram->smm_revision = 0x00020000; smram->smm_revision = 0x00020000;
smram->smbase = vcpu->arch.smbase; smram->smbase = vcpu->arch.smbase;
smram->int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu); smram->int_shadow = kvm_x86_call(get_interrupt_shadow)(vcpu);
} }
#ifdef CONFIG_X86_64 #ifdef CONFIG_X86_64
...@@ -250,13 +250,13 @@ static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, ...@@ -250,13 +250,13 @@ static void enter_smm_save_state_64(struct kvm_vcpu *vcpu,
enter_smm_save_seg_64(vcpu, &smram->tr, VCPU_SREG_TR); enter_smm_save_seg_64(vcpu, &smram->tr, VCPU_SREG_TR);
static_call(kvm_x86_get_idt)(vcpu, &dt); kvm_x86_call(get_idt)(vcpu, &dt);
smram->idtr.limit = dt.size; smram->idtr.limit = dt.size;
smram->idtr.base = dt.address; smram->idtr.base = dt.address;
enter_smm_save_seg_64(vcpu, &smram->ldtr, VCPU_SREG_LDTR); enter_smm_save_seg_64(vcpu, &smram->ldtr, VCPU_SREG_LDTR);
static_call(kvm_x86_get_gdt)(vcpu, &dt); kvm_x86_call(get_gdt)(vcpu, &dt);
smram->gdtr.limit = dt.size; smram->gdtr.limit = dt.size;
smram->gdtr.base = dt.address; smram->gdtr.base = dt.address;
...@@ -267,7 +267,7 @@ static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, ...@@ -267,7 +267,7 @@ static void enter_smm_save_state_64(struct kvm_vcpu *vcpu,
enter_smm_save_seg_64(vcpu, &smram->fs, VCPU_SREG_FS); enter_smm_save_seg_64(vcpu, &smram->fs, VCPU_SREG_FS);
enter_smm_save_seg_64(vcpu, &smram->gs, VCPU_SREG_GS); enter_smm_save_seg_64(vcpu, &smram->gs, VCPU_SREG_GS);
smram->int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu); smram->int_shadow = kvm_x86_call(get_interrupt_shadow)(vcpu);
} }
#endif #endif
...@@ -297,7 +297,7 @@ void enter_smm(struct kvm_vcpu *vcpu) ...@@ -297,7 +297,7 @@ void enter_smm(struct kvm_vcpu *vcpu)
* Kill the VM in the unlikely case of failure, because the VM * Kill the VM in the unlikely case of failure, because the VM
* can be in undefined state in this case. * can be in undefined state in this case.
*/ */
if (static_call(kvm_x86_enter_smm)(vcpu, &smram)) if (kvm_x86_call(enter_smm)(vcpu, &smram))
goto error; goto error;
kvm_smm_changed(vcpu, true); kvm_smm_changed(vcpu, true);
...@@ -305,24 +305,24 @@ void enter_smm(struct kvm_vcpu *vcpu) ...@@ -305,24 +305,24 @@ void enter_smm(struct kvm_vcpu *vcpu)
if (kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, &smram, sizeof(smram))) if (kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, &smram, sizeof(smram)))
goto error; goto error;
if (static_call(kvm_x86_get_nmi_mask)(vcpu)) if (kvm_x86_call(get_nmi_mask)(vcpu))
vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK; vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
else else
static_call(kvm_x86_set_nmi_mask)(vcpu, true); kvm_x86_call(set_nmi_mask)(vcpu, true);
kvm_set_rflags(vcpu, X86_EFLAGS_FIXED); kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
kvm_rip_write(vcpu, 0x8000); kvm_rip_write(vcpu, 0x8000);
static_call(kvm_x86_set_interrupt_shadow)(vcpu, 0); kvm_x86_call(set_interrupt_shadow)(vcpu, 0);
cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG); cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
static_call(kvm_x86_set_cr0)(vcpu, cr0); kvm_x86_call(set_cr0)(vcpu, cr0);
static_call(kvm_x86_set_cr4)(vcpu, 0); kvm_x86_call(set_cr4)(vcpu, 0);
/* Undocumented: IDT limit is set to zero on entry to SMM. */ /* Undocumented: IDT limit is set to zero on entry to SMM. */
dt.address = dt.size = 0; dt.address = dt.size = 0;
static_call(kvm_x86_set_idt)(vcpu, &dt); kvm_x86_call(set_idt)(vcpu, &dt);
if (WARN_ON_ONCE(kvm_set_dr(vcpu, 7, DR7_FIXED_1))) if (WARN_ON_ONCE(kvm_set_dr(vcpu, 7, DR7_FIXED_1)))
goto error; goto error;
...@@ -354,7 +354,7 @@ void enter_smm(struct kvm_vcpu *vcpu) ...@@ -354,7 +354,7 @@ void enter_smm(struct kvm_vcpu *vcpu)
#ifdef CONFIG_X86_64 #ifdef CONFIG_X86_64
if (guest_cpuid_has(vcpu, X86_FEATURE_LM)) if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
if (static_call(kvm_x86_set_efer)(vcpu, 0)) if (kvm_x86_call(set_efer)(vcpu, 0))
goto error; goto error;
#endif #endif
...@@ -479,11 +479,11 @@ static int rsm_load_state_32(struct x86_emulate_ctxt *ctxt, ...@@ -479,11 +479,11 @@ static int rsm_load_state_32(struct x86_emulate_ctxt *ctxt,
dt.address = smstate->gdtr.base; dt.address = smstate->gdtr.base;
dt.size = smstate->gdtr.limit; dt.size = smstate->gdtr.limit;
static_call(kvm_x86_set_gdt)(vcpu, &dt); kvm_x86_call(set_gdt)(vcpu, &dt);
dt.address = smstate->idtr.base; dt.address = smstate->idtr.base;
dt.size = smstate->idtr.limit; dt.size = smstate->idtr.limit;
static_call(kvm_x86_set_idt)(vcpu, &dt); kvm_x86_call(set_idt)(vcpu, &dt);
rsm_load_seg_32(vcpu, &smstate->es, smstate->es_sel, VCPU_SREG_ES); rsm_load_seg_32(vcpu, &smstate->es, smstate->es_sel, VCPU_SREG_ES);
rsm_load_seg_32(vcpu, &smstate->cs, smstate->cs_sel, VCPU_SREG_CS); rsm_load_seg_32(vcpu, &smstate->cs, smstate->cs_sel, VCPU_SREG_CS);
...@@ -501,7 +501,7 @@ static int rsm_load_state_32(struct x86_emulate_ctxt *ctxt, ...@@ -501,7 +501,7 @@ static int rsm_load_state_32(struct x86_emulate_ctxt *ctxt,
if (r != X86EMUL_CONTINUE) if (r != X86EMUL_CONTINUE)
return r; return r;
static_call(kvm_x86_set_interrupt_shadow)(vcpu, 0); kvm_x86_call(set_interrupt_shadow)(vcpu, 0);
ctxt->interruptibility = (u8)smstate->int_shadow; ctxt->interruptibility = (u8)smstate->int_shadow;
return r; return r;
...@@ -535,13 +535,13 @@ static int rsm_load_state_64(struct x86_emulate_ctxt *ctxt, ...@@ -535,13 +535,13 @@ static int rsm_load_state_64(struct x86_emulate_ctxt *ctxt,
dt.size = smstate->idtr.limit; dt.size = smstate->idtr.limit;
dt.address = smstate->idtr.base; dt.address = smstate->idtr.base;
static_call(kvm_x86_set_idt)(vcpu, &dt); kvm_x86_call(set_idt)(vcpu, &dt);
rsm_load_seg_64(vcpu, &smstate->ldtr, VCPU_SREG_LDTR); rsm_load_seg_64(vcpu, &smstate->ldtr, VCPU_SREG_LDTR);
dt.size = smstate->gdtr.limit; dt.size = smstate->gdtr.limit;
dt.address = smstate->gdtr.base; dt.address = smstate->gdtr.base;
static_call(kvm_x86_set_gdt)(vcpu, &dt); kvm_x86_call(set_gdt)(vcpu, &dt);
r = rsm_enter_protected_mode(vcpu, smstate->cr0, smstate->cr3, smstate->cr4); r = rsm_enter_protected_mode(vcpu, smstate->cr0, smstate->cr3, smstate->cr4);
if (r != X86EMUL_CONTINUE) if (r != X86EMUL_CONTINUE)
...@@ -554,7 +554,7 @@ static int rsm_load_state_64(struct x86_emulate_ctxt *ctxt, ...@@ -554,7 +554,7 @@ static int rsm_load_state_64(struct x86_emulate_ctxt *ctxt,
rsm_load_seg_64(vcpu, &smstate->fs, VCPU_SREG_FS); rsm_load_seg_64(vcpu, &smstate->fs, VCPU_SREG_FS);
rsm_load_seg_64(vcpu, &smstate->gs, VCPU_SREG_GS); rsm_load_seg_64(vcpu, &smstate->gs, VCPU_SREG_GS);
static_call(kvm_x86_set_interrupt_shadow)(vcpu, 0); kvm_x86_call(set_interrupt_shadow)(vcpu, 0);
ctxt->interruptibility = (u8)smstate->int_shadow; ctxt->interruptibility = (u8)smstate->int_shadow;
return X86EMUL_CONTINUE; return X86EMUL_CONTINUE;
...@@ -576,7 +576,7 @@ int emulator_leave_smm(struct x86_emulate_ctxt *ctxt) ...@@ -576,7 +576,7 @@ int emulator_leave_smm(struct x86_emulate_ctxt *ctxt)
return X86EMUL_UNHANDLEABLE; return X86EMUL_UNHANDLEABLE;
if ((vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK) == 0) if ((vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK) == 0)
static_call(kvm_x86_set_nmi_mask)(vcpu, false); kvm_x86_call(set_nmi_mask)(vcpu, false);
kvm_smm_changed(vcpu, false); kvm_smm_changed(vcpu, false);
...@@ -628,7 +628,7 @@ int emulator_leave_smm(struct x86_emulate_ctxt *ctxt) ...@@ -628,7 +628,7 @@ int emulator_leave_smm(struct x86_emulate_ctxt *ctxt)
* state (e.g. enter guest mode) before loading state from the SMM * state (e.g. enter guest mode) before loading state from the SMM
* state-save area. * state-save area.
*/ */
if (static_call(kvm_x86_leave_smm)(vcpu, &smram)) if (kvm_x86_call(leave_smm)(vcpu, &smram))
return X86EMUL_UNHANDLEABLE; return X86EMUL_UNHANDLEABLE;
#ifdef CONFIG_X86_64 #ifdef CONFIG_X86_64
......
...@@ -314,12 +314,12 @@ TRACE_EVENT(name, \ ...@@ -314,12 +314,12 @@ TRACE_EVENT(name, \
__entry->guest_rip = kvm_rip_read(vcpu); \ __entry->guest_rip = kvm_rip_read(vcpu); \
__entry->isa = isa; \ __entry->isa = isa; \
__entry->vcpu_id = vcpu->vcpu_id; \ __entry->vcpu_id = vcpu->vcpu_id; \
static_call(kvm_x86_get_exit_info)(vcpu, \ kvm_x86_call(get_exit_info)(vcpu, \
&__entry->exit_reason, \ &__entry->exit_reason, \
&__entry->info1, \ &__entry->info1, \
&__entry->info2, \ &__entry->info2, \
&__entry->intr_info, \ &__entry->intr_info, \
&__entry->error_code); \ &__entry->error_code); \
), \ ), \
\ \
TP_printk("vcpu %u reason %s%s%s rip 0x%lx info1 0x%016llx " \ TP_printk("vcpu %u reason %s%s%s rip 0x%lx info1 0x%016llx " \
...@@ -828,7 +828,8 @@ TRACE_EVENT(kvm_emulate_insn, ...@@ -828,7 +828,8 @@ TRACE_EVENT(kvm_emulate_insn,
), ),
TP_fast_assign( TP_fast_assign(
__entry->csbase = static_call(kvm_x86_get_segment_base)(vcpu, VCPU_SREG_CS); __entry->csbase = kvm_x86_call(get_segment_base)(vcpu,
VCPU_SREG_CS);
__entry->len = vcpu->arch.emulate_ctxt->fetch.ptr __entry->len = vcpu->arch.emulate_ctxt->fetch.ptr
- vcpu->arch.emulate_ctxt->fetch.data; - vcpu->arch.emulate_ctxt->fetch.data;
__entry->rip = vcpu->arch.emulate_ctxt->_eip - __entry->len; __entry->rip = vcpu->arch.emulate_ctxt->_eip - __entry->len;
......
...@@ -825,7 +825,7 @@ EXPORT_SYMBOL_GPL(kvm_requeue_exception_e); ...@@ -825,7 +825,7 @@ EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
*/ */
bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl) bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
{ {
if (static_call(kvm_x86_get_cpl)(vcpu) <= required_cpl) if (kvm_x86_call(get_cpl)(vcpu) <= required_cpl)
return true; return true;
kvm_queue_exception_e(vcpu, GP_VECTOR, 0); kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
return false; return false;
...@@ -909,7 +909,7 @@ static bool kvm_is_valid_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) ...@@ -909,7 +909,7 @@ static bool kvm_is_valid_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
return false; return false;
return static_call(kvm_x86_is_valid_cr0)(vcpu, cr0); return kvm_x86_call(is_valid_cr0)(vcpu, cr0);
} }
void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0) void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0)
...@@ -968,7 +968,7 @@ int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) ...@@ -968,7 +968,7 @@ int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
if (!is_pae(vcpu)) if (!is_pae(vcpu))
return 1; return 1;
static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l); kvm_x86_call(get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
if (cs_l) if (cs_l)
return 1; return 1;
} }
...@@ -982,7 +982,7 @@ int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) ...@@ -982,7 +982,7 @@ int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
(is_64_bit_mode(vcpu) || kvm_is_cr4_bit_set(vcpu, X86_CR4_PCIDE))) (is_64_bit_mode(vcpu) || kvm_is_cr4_bit_set(vcpu, X86_CR4_PCIDE)))
return 1; return 1;
static_call(kvm_x86_set_cr0)(vcpu, cr0); kvm_x86_call(set_cr0)(vcpu, cr0);
kvm_post_set_cr0(vcpu, old_cr0, cr0); kvm_post_set_cr0(vcpu, old_cr0, cr0);
...@@ -1100,7 +1100,7 @@ static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr) ...@@ -1100,7 +1100,7 @@ static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu) int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu)
{ {
/* Note, #UD due to CR4.OSXSAVE=0 has priority over the intercept. */ /* Note, #UD due to CR4.OSXSAVE=0 has priority over the intercept. */
if (static_call(kvm_x86_get_cpl)(vcpu) != 0 || if (kvm_x86_call(get_cpl)(vcpu) != 0 ||
__kvm_set_xcr(vcpu, kvm_rcx_read(vcpu), kvm_read_edx_eax(vcpu))) { __kvm_set_xcr(vcpu, kvm_rcx_read(vcpu), kvm_read_edx_eax(vcpu))) {
kvm_inject_gp(vcpu, 0); kvm_inject_gp(vcpu, 0);
return 1; return 1;
...@@ -1125,7 +1125,7 @@ EXPORT_SYMBOL_GPL(__kvm_is_valid_cr4); ...@@ -1125,7 +1125,7 @@ EXPORT_SYMBOL_GPL(__kvm_is_valid_cr4);
static bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) static bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
{ {
return __kvm_is_valid_cr4(vcpu, cr4) && return __kvm_is_valid_cr4(vcpu, cr4) &&
static_call(kvm_x86_is_valid_cr4)(vcpu, cr4); kvm_x86_call(is_valid_cr4)(vcpu, cr4);
} }
void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4) void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4)
...@@ -1193,7 +1193,7 @@ int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) ...@@ -1193,7 +1193,7 @@ int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
return 1; return 1;
} }
static_call(kvm_x86_set_cr4)(vcpu, cr4); kvm_x86_call(set_cr4)(vcpu, cr4);
kvm_post_set_cr4(vcpu, old_cr4, cr4); kvm_post_set_cr4(vcpu, old_cr4, cr4);
...@@ -1332,7 +1332,7 @@ void kvm_update_dr7(struct kvm_vcpu *vcpu) ...@@ -1332,7 +1332,7 @@ void kvm_update_dr7(struct kvm_vcpu *vcpu)
dr7 = vcpu->arch.guest_debug_dr7; dr7 = vcpu->arch.guest_debug_dr7;
else else
dr7 = vcpu->arch.dr7; dr7 = vcpu->arch.dr7;
static_call(kvm_x86_set_dr7)(vcpu, dr7); kvm_x86_call(set_dr7)(vcpu, dr7);
vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED; vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
if (dr7 & DR7_BP_EN_MASK) if (dr7 & DR7_BP_EN_MASK)
vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED; vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
...@@ -1675,7 +1675,7 @@ static int kvm_get_msr_feature(struct kvm_msr_entry *msr) ...@@ -1675,7 +1675,7 @@ static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
rdmsrl_safe(msr->index, &msr->data); rdmsrl_safe(msr->index, &msr->data);
break; break;
default: default:
return static_call(kvm_x86_get_msr_feature)(msr); return kvm_x86_call(get_msr_feature)(msr);
} }
return 0; return 0;
} }
...@@ -1749,7 +1749,7 @@ static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info) ...@@ -1749,7 +1749,7 @@ static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
efer &= ~EFER_LMA; efer &= ~EFER_LMA;
efer |= vcpu->arch.efer & EFER_LMA; efer |= vcpu->arch.efer & EFER_LMA;
r = static_call(kvm_x86_set_efer)(vcpu, efer); r = kvm_x86_call(set_efer)(vcpu, efer);
if (r) { if (r) {
WARN_ON(r > 0); WARN_ON(r > 0);
return r; return r;
...@@ -1879,7 +1879,7 @@ static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data, ...@@ -1879,7 +1879,7 @@ static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
msr.index = index; msr.index = index;
msr.host_initiated = host_initiated; msr.host_initiated = host_initiated;
return static_call(kvm_x86_set_msr)(vcpu, &msr); return kvm_x86_call(set_msr)(vcpu, &msr);
} }
static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu, static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
...@@ -1921,7 +1921,7 @@ int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data, ...@@ -1921,7 +1921,7 @@ int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
msr.index = index; msr.index = index;
msr.host_initiated = host_initiated; msr.host_initiated = host_initiated;
ret = static_call(kvm_x86_get_msr)(vcpu, &msr); ret = kvm_x86_call(get_msr)(vcpu, &msr);
if (!ret) if (!ret)
*data = msr.data; *data = msr.data;
return ret; return ret;
...@@ -1989,7 +1989,7 @@ static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu) ...@@ -1989,7 +1989,7 @@ static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu)
static int complete_fast_msr_access(struct kvm_vcpu *vcpu) static int complete_fast_msr_access(struct kvm_vcpu *vcpu)
{ {
return static_call(kvm_x86_complete_emulated_msr)(vcpu, vcpu->run->msr.error); return kvm_x86_call(complete_emulated_msr)(vcpu, vcpu->run->msr.error);
} }
static int complete_fast_rdmsr(struct kvm_vcpu *vcpu) static int complete_fast_rdmsr(struct kvm_vcpu *vcpu)
...@@ -2053,7 +2053,7 @@ int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu) ...@@ -2053,7 +2053,7 @@ int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
trace_kvm_msr_read_ex(ecx); trace_kvm_msr_read_ex(ecx);
} }
return static_call(kvm_x86_complete_emulated_msr)(vcpu, r); return kvm_x86_call(complete_emulated_msr)(vcpu, r);
} }
EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr); EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
...@@ -2078,7 +2078,7 @@ int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu) ...@@ -2078,7 +2078,7 @@ int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
trace_kvm_msr_write_ex(ecx, data); trace_kvm_msr_write_ex(ecx, data);
} }
return static_call(kvm_x86_complete_emulated_msr)(vcpu, r); return kvm_x86_call(complete_emulated_msr)(vcpu, r);
} }
EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr); EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
...@@ -2603,12 +2603,12 @@ static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 l1_offset) ...@@ -2603,12 +2603,12 @@ static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 l1_offset)
if (is_guest_mode(vcpu)) if (is_guest_mode(vcpu))
vcpu->arch.tsc_offset = kvm_calc_nested_tsc_offset( vcpu->arch.tsc_offset = kvm_calc_nested_tsc_offset(
l1_offset, l1_offset,
static_call(kvm_x86_get_l2_tsc_offset)(vcpu), kvm_x86_call(get_l2_tsc_offset)(vcpu),
static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu)); kvm_x86_call(get_l2_tsc_multiplier)(vcpu));
else else
vcpu->arch.tsc_offset = l1_offset; vcpu->arch.tsc_offset = l1_offset;
static_call(kvm_x86_write_tsc_offset)(vcpu); kvm_x86_call(write_tsc_offset)(vcpu);
} }
static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier) static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier)
...@@ -2619,12 +2619,12 @@ static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multipli ...@@ -2619,12 +2619,12 @@ static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multipli
if (is_guest_mode(vcpu)) if (is_guest_mode(vcpu))
vcpu->arch.tsc_scaling_ratio = kvm_calc_nested_tsc_multiplier( vcpu->arch.tsc_scaling_ratio = kvm_calc_nested_tsc_multiplier(
l1_multiplier, l1_multiplier,
static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu)); kvm_x86_call(get_l2_tsc_multiplier)(vcpu));
else else
vcpu->arch.tsc_scaling_ratio = l1_multiplier; vcpu->arch.tsc_scaling_ratio = l1_multiplier;
if (kvm_caps.has_tsc_control) if (kvm_caps.has_tsc_control)
static_call(kvm_x86_write_tsc_multiplier)(vcpu); kvm_x86_call(write_tsc_multiplier)(vcpu);
} }
static inline bool kvm_check_tsc_unstable(void) static inline bool kvm_check_tsc_unstable(void)
...@@ -3597,7 +3597,7 @@ static void kvmclock_reset(struct kvm_vcpu *vcpu) ...@@ -3597,7 +3597,7 @@ static void kvmclock_reset(struct kvm_vcpu *vcpu)
static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu) static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
{ {
++vcpu->stat.tlb_flush; ++vcpu->stat.tlb_flush;
static_call(kvm_x86_flush_tlb_all)(vcpu); kvm_x86_call(flush_tlb_all)(vcpu);
/* Flushing all ASIDs flushes the current ASID... */ /* Flushing all ASIDs flushes the current ASID... */
kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu); kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
...@@ -3618,7 +3618,7 @@ static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu) ...@@ -3618,7 +3618,7 @@ static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
kvm_mmu_sync_prev_roots(vcpu); kvm_mmu_sync_prev_roots(vcpu);
} }
static_call(kvm_x86_flush_tlb_guest)(vcpu); kvm_x86_call(flush_tlb_guest)(vcpu);
/* /*
* Flushing all "guest" TLB is always a superset of Hyper-V's fine * Flushing all "guest" TLB is always a superset of Hyper-V's fine
...@@ -3631,7 +3631,7 @@ static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu) ...@@ -3631,7 +3631,7 @@ static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
static inline void kvm_vcpu_flush_tlb_current(struct kvm_vcpu *vcpu) static inline void kvm_vcpu_flush_tlb_current(struct kvm_vcpu *vcpu)
{ {
++vcpu->stat.tlb_flush; ++vcpu->stat.tlb_flush;
static_call(kvm_x86_flush_tlb_current)(vcpu); kvm_x86_call(flush_tlb_current)(vcpu);
} }
/* /*
...@@ -4747,7 +4747,7 @@ int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext) ...@@ -4747,7 +4747,7 @@ int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
* fringe case that is not enabled except via specific settings * fringe case that is not enabled except via specific settings
* of the module parameters. * of the module parameters.
*/ */
r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE); r = kvm_x86_call(has_emulated_msr)(kvm, MSR_IA32_SMBASE);
break; break;
case KVM_CAP_NR_VCPUS: case KVM_CAP_NR_VCPUS:
r = min_t(unsigned int, num_online_cpus(), KVM_MAX_VCPUS); r = min_t(unsigned int, num_online_cpus(), KVM_MAX_VCPUS);
...@@ -4827,7 +4827,7 @@ static int __kvm_x86_dev_get_attr(struct kvm_device_attr *attr, u64 *val) ...@@ -4827,7 +4827,7 @@ static int __kvm_x86_dev_get_attr(struct kvm_device_attr *attr, u64 *val)
{ {
if (attr->group) { if (attr->group) {
if (kvm_x86_ops.dev_get_attr) if (kvm_x86_ops.dev_get_attr)
return static_call(kvm_x86_dev_get_attr)(attr->group, attr->attr, val); return kvm_x86_call(dev_get_attr)(attr->group, attr->attr, val);
return -ENXIO; return -ENXIO;
} }
...@@ -5000,14 +5000,14 @@ void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu) ...@@ -5000,14 +5000,14 @@ void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
/* Address WBINVD may be executed by guest */ /* Address WBINVD may be executed by guest */
if (need_emulate_wbinvd(vcpu)) { if (need_emulate_wbinvd(vcpu)) {
if (static_call(kvm_x86_has_wbinvd_exit)()) if (kvm_x86_call(has_wbinvd_exit)())
cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask); cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
else if (vcpu->cpu != -1 && vcpu->cpu != cpu) else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
smp_call_function_single(vcpu->cpu, smp_call_function_single(vcpu->cpu,
wbinvd_ipi, NULL, 1); wbinvd_ipi, NULL, 1);
} }
static_call(kvm_x86_vcpu_load)(vcpu, cpu); kvm_x86_call(vcpu_load)(vcpu, cpu);
/* Save host pkru register if supported */ /* Save host pkru register if supported */
vcpu->arch.host_pkru = read_pkru(); vcpu->arch.host_pkru = read_pkru();
...@@ -5115,14 +5115,14 @@ void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu) ...@@ -5115,14 +5115,14 @@ void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
srcu_read_unlock(&vcpu->kvm->srcu, idx); srcu_read_unlock(&vcpu->kvm->srcu, idx);
} }
static_call(kvm_x86_vcpu_put)(vcpu); kvm_x86_call(vcpu_put)(vcpu);
vcpu->arch.last_host_tsc = rdtsc(); vcpu->arch.last_host_tsc = rdtsc();
} }
static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu, static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
struct kvm_lapic_state *s) struct kvm_lapic_state *s)
{ {
static_call(kvm_x86_sync_pir_to_irr)(vcpu); kvm_x86_call(sync_pir_to_irr)(vcpu);
return kvm_apic_get_state(vcpu, s); return kvm_apic_get_state(vcpu, s);
} }
...@@ -5239,7 +5239,7 @@ static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu, ...@@ -5239,7 +5239,7 @@ static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
kvm_apic_after_set_mcg_cap(vcpu); kvm_apic_after_set_mcg_cap(vcpu);
static_call(kvm_x86_setup_mce)(vcpu); kvm_x86_call(setup_mce)(vcpu);
out: out:
return r; return r;
} }
...@@ -5399,11 +5399,11 @@ static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu, ...@@ -5399,11 +5399,11 @@ static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
events->interrupt.injected = events->interrupt.injected =
vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft; vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
events->interrupt.nr = vcpu->arch.interrupt.nr; events->interrupt.nr = vcpu->arch.interrupt.nr;
events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu); events->interrupt.shadow = kvm_x86_call(get_interrupt_shadow)(vcpu);
events->nmi.injected = vcpu->arch.nmi_injected; events->nmi.injected = vcpu->arch.nmi_injected;
events->nmi.pending = kvm_get_nr_pending_nmis(vcpu); events->nmi.pending = kvm_get_nr_pending_nmis(vcpu);
events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu); events->nmi.masked = kvm_x86_call(get_nmi_mask)(vcpu);
/* events->sipi_vector is never valid when reporting to user space */ /* events->sipi_vector is never valid when reporting to user space */
...@@ -5485,8 +5485,8 @@ static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, ...@@ -5485,8 +5485,8 @@ static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
vcpu->arch.interrupt.nr = events->interrupt.nr; vcpu->arch.interrupt.nr = events->interrupt.nr;
vcpu->arch.interrupt.soft = events->interrupt.soft; vcpu->arch.interrupt.soft = events->interrupt.soft;
if (events->flags & KVM_VCPUEVENT_VALID_SHADOW) if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
static_call(kvm_x86_set_interrupt_shadow)(vcpu, kvm_x86_call(set_interrupt_shadow)(vcpu,
events->interrupt.shadow); events->interrupt.shadow);
vcpu->arch.nmi_injected = events->nmi.injected; vcpu->arch.nmi_injected = events->nmi.injected;
if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING) { if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING) {
...@@ -5495,7 +5495,7 @@ static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, ...@@ -5495,7 +5495,7 @@ static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
if (events->nmi.pending) if (events->nmi.pending)
kvm_make_request(KVM_REQ_NMI, vcpu); kvm_make_request(KVM_REQ_NMI, vcpu);
} }
static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked); kvm_x86_call(set_nmi_mask)(vcpu, events->nmi.masked);
if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR && if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
lapic_in_kernel(vcpu)) lapic_in_kernel(vcpu))
...@@ -5843,7 +5843,7 @@ static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu, ...@@ -5843,7 +5843,7 @@ static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
if (!kvm_x86_ops.enable_l2_tlb_flush) if (!kvm_x86_ops.enable_l2_tlb_flush)
return -ENOTTY; return -ENOTTY;
return static_call(kvm_x86_enable_l2_tlb_flush)(vcpu); return kvm_x86_call(enable_l2_tlb_flush)(vcpu);
case KVM_CAP_HYPERV_ENFORCE_CPUID: case KVM_CAP_HYPERV_ENFORCE_CPUID:
return kvm_hv_set_enforce_cpuid(vcpu, cap->args[0]); return kvm_hv_set_enforce_cpuid(vcpu, cap->args[0]);
...@@ -6332,14 +6332,14 @@ static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr) ...@@ -6332,14 +6332,14 @@ static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
if (addr > (unsigned int)(-3 * PAGE_SIZE)) if (addr > (unsigned int)(-3 * PAGE_SIZE))
return -EINVAL; return -EINVAL;
ret = static_call(kvm_x86_set_tss_addr)(kvm, addr); ret = kvm_x86_call(set_tss_addr)(kvm, addr);
return ret; return ret;
} }
static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm, static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
u64 ident_addr) u64 ident_addr)
{ {
return static_call(kvm_x86_set_identity_map_addr)(kvm, ident_addr); return kvm_x86_call(set_identity_map_addr)(kvm, ident_addr);
} }
static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm, static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
...@@ -6649,14 +6649,14 @@ int kvm_vm_ioctl_enable_cap(struct kvm *kvm, ...@@ -6649,14 +6649,14 @@ int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
if (!kvm_x86_ops.vm_copy_enc_context_from) if (!kvm_x86_ops.vm_copy_enc_context_from)
break; break;
r = static_call(kvm_x86_vm_copy_enc_context_from)(kvm, cap->args[0]); r = kvm_x86_call(vm_copy_enc_context_from)(kvm, cap->args[0]);
break; break;
case KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM: case KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM:
r = -EINVAL; r = -EINVAL;
if (!kvm_x86_ops.vm_move_enc_context_from) if (!kvm_x86_ops.vm_move_enc_context_from)
break; break;
r = static_call(kvm_x86_vm_move_enc_context_from)(kvm, cap->args[0]); r = kvm_x86_call(vm_move_enc_context_from)(kvm, cap->args[0]);
break; break;
case KVM_CAP_EXIT_HYPERCALL: case KVM_CAP_EXIT_HYPERCALL:
if (cap->args[0] & ~KVM_EXIT_HYPERCALL_VALID_MASK) { if (cap->args[0] & ~KVM_EXIT_HYPERCALL_VALID_MASK) {
...@@ -7317,7 +7317,7 @@ int kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg) ...@@ -7317,7 +7317,7 @@ int kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg)
if (!kvm_x86_ops.mem_enc_ioctl) if (!kvm_x86_ops.mem_enc_ioctl)
goto out; goto out;
r = static_call(kvm_x86_mem_enc_ioctl)(kvm, argp); r = kvm_x86_call(mem_enc_ioctl)(kvm, argp);
break; break;
} }
case KVM_MEMORY_ENCRYPT_REG_REGION: { case KVM_MEMORY_ENCRYPT_REG_REGION: {
...@@ -7331,7 +7331,7 @@ int kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg) ...@@ -7331,7 +7331,7 @@ int kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg)
if (!kvm_x86_ops.mem_enc_register_region) if (!kvm_x86_ops.mem_enc_register_region)
goto out; goto out;
r = static_call(kvm_x86_mem_enc_register_region)(kvm, &region); r = kvm_x86_call(mem_enc_register_region)(kvm, &region);
break; break;
} }
case KVM_MEMORY_ENCRYPT_UNREG_REGION: { case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
...@@ -7345,7 +7345,7 @@ int kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg) ...@@ -7345,7 +7345,7 @@ int kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg)
if (!kvm_x86_ops.mem_enc_unregister_region) if (!kvm_x86_ops.mem_enc_unregister_region)
goto out; goto out;
r = static_call(kvm_x86_mem_enc_unregister_region)(kvm, &region); r = kvm_x86_call(mem_enc_unregister_region)(kvm, &region);
break; break;
} }
#ifdef CONFIG_KVM_HYPERV #ifdef CONFIG_KVM_HYPERV
...@@ -7499,7 +7499,8 @@ static void kvm_init_msr_lists(void) ...@@ -7499,7 +7499,8 @@ static void kvm_init_msr_lists(void)
} }
for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) { for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i])) if (!kvm_x86_call(has_emulated_msr)(NULL,
emulated_msrs_all[i]))
continue; continue;
emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i]; emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
...@@ -7558,13 +7559,13 @@ static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v) ...@@ -7558,13 +7559,13 @@ static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
void kvm_set_segment(struct kvm_vcpu *vcpu, void kvm_set_segment(struct kvm_vcpu *vcpu,
struct kvm_segment *var, int seg) struct kvm_segment *var, int seg)
{ {
static_call(kvm_x86_set_segment)(vcpu, var, seg); kvm_x86_call(set_segment)(vcpu, var, seg);
} }
void kvm_get_segment(struct kvm_vcpu *vcpu, void kvm_get_segment(struct kvm_vcpu *vcpu,
struct kvm_segment *var, int seg) struct kvm_segment *var, int seg)
{ {
static_call(kvm_x86_get_segment)(vcpu, var, seg); kvm_x86_call(get_segment)(vcpu, var, seg);
} }
gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u64 access, gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u64 access,
...@@ -7587,7 +7588,7 @@ gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva, ...@@ -7587,7 +7588,7 @@ gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
{ {
struct kvm_mmu *mmu = vcpu->arch.walk_mmu; struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
u64 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0; u64 access = (kvm_x86_call(get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception); return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
} }
EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read); EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
...@@ -7597,7 +7598,7 @@ gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva, ...@@ -7597,7 +7598,7 @@ gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
{ {
struct kvm_mmu *mmu = vcpu->arch.walk_mmu; struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
u64 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0; u64 access = (kvm_x86_call(get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
access |= PFERR_WRITE_MASK; access |= PFERR_WRITE_MASK;
return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception); return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
} }
...@@ -7650,7 +7651,7 @@ static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt, ...@@ -7650,7 +7651,7 @@ static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
{ {
struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
struct kvm_mmu *mmu = vcpu->arch.walk_mmu; struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
u64 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0; u64 access = (kvm_x86_call(get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
unsigned offset; unsigned offset;
int ret; int ret;
...@@ -7675,7 +7676,7 @@ int kvm_read_guest_virt(struct kvm_vcpu *vcpu, ...@@ -7675,7 +7676,7 @@ int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
gva_t addr, void *val, unsigned int bytes, gva_t addr, void *val, unsigned int bytes,
struct x86_exception *exception) struct x86_exception *exception)
{ {
u64 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0; u64 access = (kvm_x86_call(get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
/* /*
* FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
...@@ -7698,7 +7699,7 @@ static int emulator_read_std(struct x86_emulate_ctxt *ctxt, ...@@ -7698,7 +7699,7 @@ static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
if (system) if (system)
access |= PFERR_IMPLICIT_ACCESS; access |= PFERR_IMPLICIT_ACCESS;
else if (static_call(kvm_x86_get_cpl)(vcpu) == 3) else if (kvm_x86_call(get_cpl)(vcpu) == 3)
access |= PFERR_USER_MASK; access |= PFERR_USER_MASK;
return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception); return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
...@@ -7743,7 +7744,7 @@ static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *v ...@@ -7743,7 +7744,7 @@ static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *v
if (system) if (system)
access |= PFERR_IMPLICIT_ACCESS; access |= PFERR_IMPLICIT_ACCESS;
else if (static_call(kvm_x86_get_cpl)(vcpu) == 3) else if (kvm_x86_call(get_cpl)(vcpu) == 3)
access |= PFERR_USER_MASK; access |= PFERR_USER_MASK;
return kvm_write_guest_virt_helper(addr, val, bytes, vcpu, return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
...@@ -7764,8 +7765,8 @@ EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system); ...@@ -7764,8 +7765,8 @@ EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
static int kvm_check_emulate_insn(struct kvm_vcpu *vcpu, int emul_type, static int kvm_check_emulate_insn(struct kvm_vcpu *vcpu, int emul_type,
void *insn, int insn_len) void *insn, int insn_len)
{ {
return static_call(kvm_x86_check_emulate_instruction)(vcpu, emul_type, return kvm_x86_call(check_emulate_instruction)(vcpu, emul_type,
insn, insn_len); insn, insn_len);
} }
int handle_ud(struct kvm_vcpu *vcpu) int handle_ud(struct kvm_vcpu *vcpu)
...@@ -7815,8 +7816,8 @@ static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva, ...@@ -7815,8 +7816,8 @@ static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
bool write) bool write)
{ {
struct kvm_mmu *mmu = vcpu->arch.walk_mmu; struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
u64 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0) u64 access = ((kvm_x86_call(get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
| (write ? PFERR_WRITE_MASK : 0); | (write ? PFERR_WRITE_MASK : 0);
/* /*
* currently PKRU is only applied to ept enabled guest so * currently PKRU is only applied to ept enabled guest so
...@@ -8242,7 +8243,7 @@ static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt, ...@@ -8242,7 +8243,7 @@ static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg) static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
{ {
return static_call(kvm_x86_get_segment_base)(vcpu, seg); return kvm_x86_call(get_segment_base)(vcpu, seg);
} }
static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address) static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
...@@ -8255,7 +8256,7 @@ static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu) ...@@ -8255,7 +8256,7 @@ static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
if (!need_emulate_wbinvd(vcpu)) if (!need_emulate_wbinvd(vcpu))
return X86EMUL_CONTINUE; return X86EMUL_CONTINUE;
if (static_call(kvm_x86_has_wbinvd_exit)()) { if (kvm_x86_call(has_wbinvd_exit)()) {
int cpu = get_cpu(); int cpu = get_cpu();
cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask); cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
...@@ -8359,27 +8360,27 @@ static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val) ...@@ -8359,27 +8360,27 @@ static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt) static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
{ {
return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt)); return kvm_x86_call(get_cpl)(emul_to_vcpu(ctxt));
} }
static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
{ {
static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt); kvm_x86_call(get_gdt)(emul_to_vcpu(ctxt), dt);
} }
static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
{ {
static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt); kvm_x86_call(get_idt)(emul_to_vcpu(ctxt), dt);
} }
static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
{ {
static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt); kvm_x86_call(set_gdt)(emul_to_vcpu(ctxt), dt);
} }
static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
{ {
static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt); kvm_x86_call(set_idt)(emul_to_vcpu(ctxt), dt);
} }
static unsigned long emulator_get_cached_segment_base( static unsigned long emulator_get_cached_segment_base(
...@@ -8526,8 +8527,8 @@ static int emulator_intercept(struct x86_emulate_ctxt *ctxt, ...@@ -8526,8 +8527,8 @@ static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
struct x86_instruction_info *info, struct x86_instruction_info *info,
enum x86_intercept_stage stage) enum x86_intercept_stage stage)
{ {
return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage, return kvm_x86_call(check_intercept)(emul_to_vcpu(ctxt), info, stage,
&ctxt->exception); &ctxt->exception);
} }
static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt, static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
...@@ -8569,7 +8570,7 @@ static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulon ...@@ -8569,7 +8570,7 @@ static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulon
static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked) static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
{ {
static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked); kvm_x86_call(set_nmi_mask)(emul_to_vcpu(ctxt), masked);
} }
static bool emulator_is_smm(struct x86_emulate_ctxt *ctxt) static bool emulator_is_smm(struct x86_emulate_ctxt *ctxt)
...@@ -8614,7 +8615,8 @@ static gva_t emulator_get_untagged_addr(struct x86_emulate_ctxt *ctxt, ...@@ -8614,7 +8615,8 @@ static gva_t emulator_get_untagged_addr(struct x86_emulate_ctxt *ctxt,
if (!kvm_x86_ops.get_untagged_addr) if (!kvm_x86_ops.get_untagged_addr)
return addr; return addr;
return static_call(kvm_x86_get_untagged_addr)(emul_to_vcpu(ctxt), addr, flags); return kvm_x86_call(get_untagged_addr)(emul_to_vcpu(ctxt),
addr, flags);
} }
static const struct x86_emulate_ops emulate_ops = { static const struct x86_emulate_ops emulate_ops = {
...@@ -8667,7 +8669,7 @@ static const struct x86_emulate_ops emulate_ops = { ...@@ -8667,7 +8669,7 @@ static const struct x86_emulate_ops emulate_ops = {
static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask) static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
{ {
u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu); u32 int_shadow = kvm_x86_call(get_interrupt_shadow)(vcpu);
/* /*
* an sti; sti; sequence only disable interrupts for the first * an sti; sti; sequence only disable interrupts for the first
* instruction. So, if the last instruction, be it emulated or * instruction. So, if the last instruction, be it emulated or
...@@ -8678,7 +8680,7 @@ static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask) ...@@ -8678,7 +8680,7 @@ static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
if (int_shadow & mask) if (int_shadow & mask)
mask = 0; mask = 0;
if (unlikely(int_shadow || mask)) { if (unlikely(int_shadow || mask)) {
static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask); kvm_x86_call(set_interrupt_shadow)(vcpu, mask);
if (!mask) if (!mask)
kvm_make_request(KVM_REQ_EVENT, vcpu); kvm_make_request(KVM_REQ_EVENT, vcpu);
} }
...@@ -8719,7 +8721,7 @@ static void init_emulate_ctxt(struct kvm_vcpu *vcpu) ...@@ -8719,7 +8721,7 @@ static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt; struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
int cs_db, cs_l; int cs_db, cs_l;
static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l); kvm_x86_call(get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
ctxt->gpa_available = false; ctxt->gpa_available = false;
ctxt->eflags = kvm_get_rflags(vcpu); ctxt->eflags = kvm_get_rflags(vcpu);
...@@ -8775,9 +8777,8 @@ static void prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data, ...@@ -8775,9 +8777,8 @@ static void prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
*/ */
memset(&info, 0, sizeof(info)); memset(&info, 0, sizeof(info));
static_call(kvm_x86_get_exit_info)(vcpu, (u32 *)&info[0], &info[1], kvm_x86_call(get_exit_info)(vcpu, (u32 *)&info[0], &info[1], &info[2],
&info[2], (u32 *)&info[3], (u32 *)&info[3], (u32 *)&info[4]);
(u32 *)&info[4]);
run->exit_reason = KVM_EXIT_INTERNAL_ERROR; run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
run->emulation_failure.suberror = KVM_INTERNAL_ERROR_EMULATION; run->emulation_failure.suberror = KVM_INTERNAL_ERROR_EMULATION;
...@@ -8854,7 +8855,7 @@ static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type) ...@@ -8854,7 +8855,7 @@ static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
kvm_queue_exception(vcpu, UD_VECTOR); kvm_queue_exception(vcpu, UD_VECTOR);
if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) { if (!is_guest_mode(vcpu) && kvm_x86_call(get_cpl)(vcpu) == 0) {
prepare_emulation_ctxt_failure_exit(vcpu); prepare_emulation_ctxt_failure_exit(vcpu);
return 0; return 0;
} }
...@@ -9012,10 +9013,10 @@ static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu) ...@@ -9012,10 +9013,10 @@ static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu) int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
{ {
unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu); unsigned long rflags = kvm_x86_call(get_rflags)(vcpu);
int r; int r;
r = static_call(kvm_x86_skip_emulated_instruction)(vcpu); r = kvm_x86_call(skip_emulated_instruction)(vcpu);
if (unlikely(!r)) if (unlikely(!r))
return 0; return 0;
...@@ -9047,7 +9048,7 @@ static bool kvm_is_code_breakpoint_inhibited(struct kvm_vcpu *vcpu) ...@@ -9047,7 +9048,7 @@ static bool kvm_is_code_breakpoint_inhibited(struct kvm_vcpu *vcpu)
if (!guest_cpuid_is_intel_compatible(vcpu)) if (!guest_cpuid_is_intel_compatible(vcpu))
return false; return false;
return static_call(kvm_x86_get_interrupt_shadow)(vcpu) & KVM_X86_SHADOW_INT_MOV_SS; return kvm_x86_call(get_interrupt_shadow)(vcpu) & KVM_X86_SHADOW_INT_MOV_SS;
} }
static bool kvm_vcpu_check_code_breakpoint(struct kvm_vcpu *vcpu, static bool kvm_vcpu_check_code_breakpoint(struct kvm_vcpu *vcpu,
...@@ -9319,7 +9320,7 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa, ...@@ -9319,7 +9320,7 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
writeback: writeback:
if (writeback) { if (writeback) {
unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu); unsigned long rflags = kvm_x86_call(get_rflags)(vcpu);
toggle_interruptibility(vcpu, ctxt->interruptibility); toggle_interruptibility(vcpu, ctxt->interruptibility);
vcpu->arch.emulate_regs_need_sync_to_vcpu = false; vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
...@@ -9336,7 +9337,7 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa, ...@@ -9336,7 +9337,7 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
kvm_rip_write(vcpu, ctxt->eip); kvm_rip_write(vcpu, ctxt->eip);
if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP))) if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
r = kvm_vcpu_do_singlestep(vcpu); r = kvm_vcpu_do_singlestep(vcpu);
static_call(kvm_x86_update_emulated_instruction)(vcpu); kvm_x86_call(update_emulated_instruction)(vcpu);
__kvm_set_rflags(vcpu, ctxt->eflags); __kvm_set_rflags(vcpu, ctxt->eflags);
} }
...@@ -9735,7 +9736,7 @@ static int kvm_x86_check_processor_compatibility(void) ...@@ -9735,7 +9736,7 @@ static int kvm_x86_check_processor_compatibility(void)
__cr4_reserved_bits(cpu_has, &boot_cpu_data)) __cr4_reserved_bits(cpu_has, &boot_cpu_data))
return -EIO; return -EIO;
return static_call(kvm_x86_check_processor_compatibility)(); return kvm_x86_call(check_processor_compatibility)();
} }
static void kvm_x86_check_cpu_compat(void *ret) static void kvm_x86_check_cpu_compat(void *ret)
...@@ -9878,7 +9879,7 @@ int kvm_x86_vendor_init(struct kvm_x86_init_ops *ops) ...@@ -9878,7 +9879,7 @@ int kvm_x86_vendor_init(struct kvm_x86_init_ops *ops)
out_unwind_ops: out_unwind_ops:
kvm_x86_ops.hardware_enable = NULL; kvm_x86_ops.hardware_enable = NULL;
static_call(kvm_x86_hardware_unsetup)(); kvm_x86_call(hardware_unsetup)();
out_mmu_exit: out_mmu_exit:
kvm_mmu_vendor_module_exit(); kvm_mmu_vendor_module_exit();
out_free_percpu: out_free_percpu:
...@@ -9909,7 +9910,7 @@ void kvm_x86_vendor_exit(void) ...@@ -9909,7 +9910,7 @@ void kvm_x86_vendor_exit(void)
irq_work_sync(&pvclock_irq_work); irq_work_sync(&pvclock_irq_work);
cancel_work_sync(&pvclock_gtod_work); cancel_work_sync(&pvclock_gtod_work);
#endif #endif
static_call(kvm_x86_hardware_unsetup)(); kvm_x86_call(hardware_unsetup)();
kvm_mmu_vendor_module_exit(); kvm_mmu_vendor_module_exit();
free_percpu(user_return_msrs); free_percpu(user_return_msrs);
kmem_cache_destroy(x86_emulator_cache); kmem_cache_destroy(x86_emulator_cache);
...@@ -10035,7 +10036,8 @@ EXPORT_SYMBOL_GPL(kvm_apicv_activated); ...@@ -10035,7 +10036,8 @@ EXPORT_SYMBOL_GPL(kvm_apicv_activated);
bool kvm_vcpu_apicv_activated(struct kvm_vcpu *vcpu) bool kvm_vcpu_apicv_activated(struct kvm_vcpu *vcpu)
{ {
ulong vm_reasons = READ_ONCE(vcpu->kvm->arch.apicv_inhibit_reasons); ulong vm_reasons = READ_ONCE(vcpu->kvm->arch.apicv_inhibit_reasons);
ulong vcpu_reasons = static_call(kvm_x86_vcpu_get_apicv_inhibit_reasons)(vcpu); ulong vcpu_reasons =
kvm_x86_call(vcpu_get_apicv_inhibit_reasons)(vcpu);
return (vm_reasons | vcpu_reasons) == 0; return (vm_reasons | vcpu_reasons) == 0;
} }
...@@ -10221,7 +10223,7 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu) ...@@ -10221,7 +10223,7 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
a2 = kvm_rdx_read(vcpu); a2 = kvm_rdx_read(vcpu);
a3 = kvm_rsi_read(vcpu); a3 = kvm_rsi_read(vcpu);
op_64_bit = is_64_bit_hypercall(vcpu); op_64_bit = is_64_bit_hypercall(vcpu);
cpl = static_call(kvm_x86_get_cpl)(vcpu); cpl = kvm_x86_call(get_cpl)(vcpu);
ret = __kvm_emulate_hypercall(vcpu, nr, a0, a1, a2, a3, op_64_bit, cpl); ret = __kvm_emulate_hypercall(vcpu, nr, a0, a1, a2, a3, op_64_bit, cpl);
if (nr == KVM_HC_MAP_GPA_RANGE && !ret) if (nr == KVM_HC_MAP_GPA_RANGE && !ret)
...@@ -10253,7 +10255,7 @@ static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt) ...@@ -10253,7 +10255,7 @@ static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
return X86EMUL_PROPAGATE_FAULT; return X86EMUL_PROPAGATE_FAULT;
} }
static_call(kvm_x86_patch_hypercall)(vcpu, instruction); kvm_x86_call(patch_hypercall)(vcpu, instruction);
return emulator_write_emulated(ctxt, rip, instruction, 3, return emulator_write_emulated(ctxt, rip, instruction, 3,
&ctxt->exception); &ctxt->exception);
...@@ -10270,7 +10272,7 @@ static void post_kvm_run_save(struct kvm_vcpu *vcpu) ...@@ -10270,7 +10272,7 @@ static void post_kvm_run_save(struct kvm_vcpu *vcpu)
{ {
struct kvm_run *kvm_run = vcpu->run; struct kvm_run *kvm_run = vcpu->run;
kvm_run->if_flag = static_call(kvm_x86_get_if_flag)(vcpu); kvm_run->if_flag = kvm_x86_call(get_if_flag)(vcpu);
kvm_run->cr8 = kvm_get_cr8(vcpu); kvm_run->cr8 = kvm_get_cr8(vcpu);
kvm_run->apic_base = kvm_get_apic_base(vcpu); kvm_run->apic_base = kvm_get_apic_base(vcpu);
...@@ -10307,7 +10309,7 @@ static void update_cr8_intercept(struct kvm_vcpu *vcpu) ...@@ -10307,7 +10309,7 @@ static void update_cr8_intercept(struct kvm_vcpu *vcpu)
tpr = kvm_lapic_get_cr8(vcpu); tpr = kvm_lapic_get_cr8(vcpu);
static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr); kvm_x86_call(update_cr8_intercept)(vcpu, tpr, max_irr);
} }
...@@ -10337,7 +10339,7 @@ static void kvm_inject_exception(struct kvm_vcpu *vcpu) ...@@ -10337,7 +10339,7 @@ static void kvm_inject_exception(struct kvm_vcpu *vcpu)
vcpu->arch.exception.error_code, vcpu->arch.exception.error_code,
vcpu->arch.exception.injected); vcpu->arch.exception.injected);
static_call(kvm_x86_inject_exception)(vcpu); kvm_x86_call(inject_exception)(vcpu);
} }
/* /*
...@@ -10423,9 +10425,9 @@ static int kvm_check_and_inject_events(struct kvm_vcpu *vcpu, ...@@ -10423,9 +10425,9 @@ static int kvm_check_and_inject_events(struct kvm_vcpu *vcpu,
else if (kvm_is_exception_pending(vcpu)) else if (kvm_is_exception_pending(vcpu))
; /* see above */ ; /* see above */
else if (vcpu->arch.nmi_injected) else if (vcpu->arch.nmi_injected)
static_call(kvm_x86_inject_nmi)(vcpu); kvm_x86_call(inject_nmi)(vcpu);
else if (vcpu->arch.interrupt.injected) else if (vcpu->arch.interrupt.injected)
static_call(kvm_x86_inject_irq)(vcpu, true); kvm_x86_call(inject_irq)(vcpu, true);
/* /*
* Exceptions that morph to VM-Exits are handled above, and pending * Exceptions that morph to VM-Exits are handled above, and pending
...@@ -10510,7 +10512,8 @@ static int kvm_check_and_inject_events(struct kvm_vcpu *vcpu, ...@@ -10510,7 +10512,8 @@ static int kvm_check_and_inject_events(struct kvm_vcpu *vcpu,
*/ */
#ifdef CONFIG_KVM_SMM #ifdef CONFIG_KVM_SMM
if (vcpu->arch.smi_pending) { if (vcpu->arch.smi_pending) {
r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY; r = can_inject ? kvm_x86_call(smi_allowed)(vcpu, true) :
-EBUSY;
if (r < 0) if (r < 0)
goto out; goto out;
if (r) { if (r) {
...@@ -10519,27 +10522,29 @@ static int kvm_check_and_inject_events(struct kvm_vcpu *vcpu, ...@@ -10519,27 +10522,29 @@ static int kvm_check_and_inject_events(struct kvm_vcpu *vcpu,
enter_smm(vcpu); enter_smm(vcpu);
can_inject = false; can_inject = false;
} else } else
static_call(kvm_x86_enable_smi_window)(vcpu); kvm_x86_call(enable_smi_window)(vcpu);
} }
#endif #endif
if (vcpu->arch.nmi_pending) { if (vcpu->arch.nmi_pending) {
r = can_inject ? static_call(kvm_x86_nmi_allowed)(vcpu, true) : -EBUSY; r = can_inject ? kvm_x86_call(nmi_allowed)(vcpu, true) :
-EBUSY;
if (r < 0) if (r < 0)
goto out; goto out;
if (r) { if (r) {
--vcpu->arch.nmi_pending; --vcpu->arch.nmi_pending;
vcpu->arch.nmi_injected = true; vcpu->arch.nmi_injected = true;
static_call(kvm_x86_inject_nmi)(vcpu); kvm_x86_call(inject_nmi)(vcpu);
can_inject = false; can_inject = false;
WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0); WARN_ON(kvm_x86_call(nmi_allowed)(vcpu, true) < 0);
} }
if (vcpu->arch.nmi_pending) if (vcpu->arch.nmi_pending)
static_call(kvm_x86_enable_nmi_window)(vcpu); kvm_x86_call(enable_nmi_window)(vcpu);
} }
if (kvm_cpu_has_injectable_intr(vcpu)) { if (kvm_cpu_has_injectable_intr(vcpu)) {
r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY; r = can_inject ? kvm_x86_call(interrupt_allowed)(vcpu, true) :
-EBUSY;
if (r < 0) if (r < 0)
goto out; goto out;
if (r) { if (r) {
...@@ -10547,12 +10552,12 @@ static int kvm_check_and_inject_events(struct kvm_vcpu *vcpu, ...@@ -10547,12 +10552,12 @@ static int kvm_check_and_inject_events(struct kvm_vcpu *vcpu,
if (!WARN_ON_ONCE(irq == -1)) { if (!WARN_ON_ONCE(irq == -1)) {
kvm_queue_interrupt(vcpu, irq, false); kvm_queue_interrupt(vcpu, irq, false);
static_call(kvm_x86_inject_irq)(vcpu, false); kvm_x86_call(inject_irq)(vcpu, false);
WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0); WARN_ON(kvm_x86_call(interrupt_allowed)(vcpu, true) < 0);
} }
} }
if (kvm_cpu_has_injectable_intr(vcpu)) if (kvm_cpu_has_injectable_intr(vcpu))
static_call(kvm_x86_enable_irq_window)(vcpu); kvm_x86_call(enable_irq_window)(vcpu);
} }
if (is_guest_mode(vcpu) && if (is_guest_mode(vcpu) &&
...@@ -10598,7 +10603,7 @@ static void process_nmi(struct kvm_vcpu *vcpu) ...@@ -10598,7 +10603,7 @@ static void process_nmi(struct kvm_vcpu *vcpu)
* blocks NMIs). KVM will immediately inject one of the two NMIs, and * blocks NMIs). KVM will immediately inject one of the two NMIs, and
* will request an NMI window to handle the second NMI. * will request an NMI window to handle the second NMI.
*/ */
if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected) if (kvm_x86_call(get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
limit = 1; limit = 1;
else else
limit = 2; limit = 2;
...@@ -10607,14 +10612,14 @@ static void process_nmi(struct kvm_vcpu *vcpu) ...@@ -10607,14 +10612,14 @@ static void process_nmi(struct kvm_vcpu *vcpu)
* Adjust the limit to account for pending virtual NMIs, which aren't * Adjust the limit to account for pending virtual NMIs, which aren't
* tracked in vcpu->arch.nmi_pending. * tracked in vcpu->arch.nmi_pending.
*/ */
if (static_call(kvm_x86_is_vnmi_pending)(vcpu)) if (kvm_x86_call(is_vnmi_pending)(vcpu))
limit--; limit--;
vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0); vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit); vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
if (vcpu->arch.nmi_pending && if (vcpu->arch.nmi_pending &&
(static_call(kvm_x86_set_vnmi_pending)(vcpu))) (kvm_x86_call(set_vnmi_pending)(vcpu)))
vcpu->arch.nmi_pending--; vcpu->arch.nmi_pending--;
if (vcpu->arch.nmi_pending) if (vcpu->arch.nmi_pending)
...@@ -10625,7 +10630,7 @@ static void process_nmi(struct kvm_vcpu *vcpu) ...@@ -10625,7 +10630,7 @@ static void process_nmi(struct kvm_vcpu *vcpu)
int kvm_get_nr_pending_nmis(struct kvm_vcpu *vcpu) int kvm_get_nr_pending_nmis(struct kvm_vcpu *vcpu)
{ {
return vcpu->arch.nmi_pending + return vcpu->arch.nmi_pending +
static_call(kvm_x86_is_vnmi_pending)(vcpu); kvm_x86_call(is_vnmi_pending)(vcpu);
} }
void kvm_make_scan_ioapic_request_mask(struct kvm *kvm, void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
...@@ -10659,7 +10664,7 @@ void __kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu) ...@@ -10659,7 +10664,7 @@ void __kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
apic->apicv_active = activate; apic->apicv_active = activate;
kvm_apic_update_apicv(vcpu); kvm_apic_update_apicv(vcpu);
static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu); kvm_x86_call(refresh_apicv_exec_ctrl)(vcpu);
/* /*
* When APICv gets disabled, we may still have injected interrupts * When APICv gets disabled, we may still have injected interrupts
...@@ -10759,7 +10764,7 @@ static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu) ...@@ -10759,7 +10764,7 @@ static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256); bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
static_call(kvm_x86_sync_pir_to_irr)(vcpu); kvm_x86_call(sync_pir_to_irr)(vcpu);
if (irqchip_split(vcpu->kvm)) if (irqchip_split(vcpu->kvm))
kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors); kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
...@@ -10784,17 +10789,17 @@ static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu) ...@@ -10784,17 +10789,17 @@ static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
bitmap_or((ulong *)eoi_exit_bitmap, bitmap_or((ulong *)eoi_exit_bitmap,
vcpu->arch.ioapic_handled_vectors, vcpu->arch.ioapic_handled_vectors,
to_hv_synic(vcpu)->vec_bitmap, 256); to_hv_synic(vcpu)->vec_bitmap, 256);
static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap); kvm_x86_call(load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
return; return;
} }
#endif #endif
static_call(kvm_x86_load_eoi_exitmap)( kvm_x86_call(load_eoi_exitmap)(
vcpu, (u64 *)vcpu->arch.ioapic_handled_vectors); vcpu, (u64 *)vcpu->arch.ioapic_handled_vectors);
} }
void kvm_arch_guest_memory_reclaimed(struct kvm *kvm) void kvm_arch_guest_memory_reclaimed(struct kvm *kvm)
{ {
static_call(kvm_x86_guest_memory_reclaimed)(kvm); kvm_x86_call(guest_memory_reclaimed)(kvm);
} }
static void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu) static void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
...@@ -10802,7 +10807,7 @@ static void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu) ...@@ -10802,7 +10807,7 @@ static void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
if (!lapic_in_kernel(vcpu)) if (!lapic_in_kernel(vcpu))
return; return;
static_call(kvm_x86_set_apic_access_page_addr)(vcpu); kvm_x86_call(set_apic_access_page_addr)(vcpu);
} }
/* /*
...@@ -10966,10 +10971,10 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu) ...@@ -10966,10 +10971,10 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
if (kvm_check_request(KVM_REQ_APF_READY, vcpu)) if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
kvm_check_async_pf_completion(vcpu); kvm_check_async_pf_completion(vcpu);
if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu)) if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
static_call(kvm_x86_msr_filter_changed)(vcpu); kvm_x86_call(msr_filter_changed)(vcpu);
if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu)) if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
static_call(kvm_x86_update_cpu_dirty_logging)(vcpu); kvm_x86_call(update_cpu_dirty_logging)(vcpu);
if (kvm_check_request(KVM_REQ_UPDATE_PROTECTED_GUEST_STATE, vcpu)) { if (kvm_check_request(KVM_REQ_UPDATE_PROTECTED_GUEST_STATE, vcpu)) {
kvm_vcpu_reset(vcpu, true); kvm_vcpu_reset(vcpu, true);
...@@ -10999,7 +11004,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu) ...@@ -10999,7 +11004,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
goto out; goto out;
} }
if (req_int_win) if (req_int_win)
static_call(kvm_x86_enable_irq_window)(vcpu); kvm_x86_call(enable_irq_window)(vcpu);
if (kvm_lapic_enabled(vcpu)) { if (kvm_lapic_enabled(vcpu)) {
update_cr8_intercept(vcpu); update_cr8_intercept(vcpu);
...@@ -11014,7 +11019,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu) ...@@ -11014,7 +11019,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
preempt_disable(); preempt_disable();
static_call(kvm_x86_prepare_switch_to_guest)(vcpu); kvm_x86_call(prepare_switch_to_guest)(vcpu);
/* /*
* Disable IRQs before setting IN_GUEST_MODE. Posted interrupt * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
...@@ -11050,7 +11055,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu) ...@@ -11050,7 +11055,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
* i.e. they can post interrupts even if APICv is temporarily disabled. * i.e. they can post interrupts even if APICv is temporarily disabled.
*/ */
if (kvm_lapic_enabled(vcpu)) if (kvm_lapic_enabled(vcpu))
static_call(kvm_x86_sync_pir_to_irr)(vcpu); kvm_x86_call(sync_pir_to_irr)(vcpu);
if (kvm_vcpu_exit_request(vcpu)) { if (kvm_vcpu_exit_request(vcpu)) {
vcpu->mode = OUTSIDE_GUEST_MODE; vcpu->mode = OUTSIDE_GUEST_MODE;
...@@ -11094,12 +11099,13 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu) ...@@ -11094,12 +11099,13 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
WARN_ON_ONCE((kvm_vcpu_apicv_activated(vcpu) != kvm_vcpu_apicv_active(vcpu)) && WARN_ON_ONCE((kvm_vcpu_apicv_activated(vcpu) != kvm_vcpu_apicv_active(vcpu)) &&
(kvm_get_apic_mode(vcpu) != LAPIC_MODE_DISABLED)); (kvm_get_apic_mode(vcpu) != LAPIC_MODE_DISABLED));
exit_fastpath = static_call(kvm_x86_vcpu_run)(vcpu, req_immediate_exit); exit_fastpath = kvm_x86_call(vcpu_run)(vcpu,
req_immediate_exit);
if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST)) if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
break; break;
if (kvm_lapic_enabled(vcpu)) if (kvm_lapic_enabled(vcpu))
static_call(kvm_x86_sync_pir_to_irr)(vcpu); kvm_x86_call(sync_pir_to_irr)(vcpu);
if (unlikely(kvm_vcpu_exit_request(vcpu))) { if (unlikely(kvm_vcpu_exit_request(vcpu))) {
exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED; exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
...@@ -11118,7 +11124,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu) ...@@ -11118,7 +11124,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
*/ */
if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) { if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP); WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
static_call(kvm_x86_sync_dirty_debug_regs)(vcpu); kvm_x86_call(sync_dirty_debug_regs)(vcpu);
kvm_update_dr0123(vcpu); kvm_update_dr0123(vcpu);
kvm_update_dr7(vcpu); kvm_update_dr7(vcpu);
} }
...@@ -11147,7 +11153,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu) ...@@ -11147,7 +11153,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
if (vcpu->arch.xfd_no_write_intercept) if (vcpu->arch.xfd_no_write_intercept)
fpu_sync_guest_vmexit_xfd_state(); fpu_sync_guest_vmexit_xfd_state();
static_call(kvm_x86_handle_exit_irqoff)(vcpu); kvm_x86_call(handle_exit_irqoff)(vcpu);
if (vcpu->arch.guest_fpu.xfd_err) if (vcpu->arch.guest_fpu.xfd_err)
wrmsrl(MSR_IA32_XFD_ERR, 0); wrmsrl(MSR_IA32_XFD_ERR, 0);
...@@ -11199,13 +11205,13 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu) ...@@ -11199,13 +11205,13 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
if (vcpu->arch.apic_attention) if (vcpu->arch.apic_attention)
kvm_lapic_sync_from_vapic(vcpu); kvm_lapic_sync_from_vapic(vcpu);
r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath); r = kvm_x86_call(handle_exit)(vcpu, exit_fastpath);
return r; return r;
cancel_injection: cancel_injection:
if (req_immediate_exit) if (req_immediate_exit)
kvm_make_request(KVM_REQ_EVENT, vcpu); kvm_make_request(KVM_REQ_EVENT, vcpu);
static_call(kvm_x86_cancel_injection)(vcpu); kvm_x86_call(cancel_injection)(vcpu);
if (unlikely(vcpu->arch.apic_attention)) if (unlikely(vcpu->arch.apic_attention))
kvm_lapic_sync_from_vapic(vcpu); kvm_lapic_sync_from_vapic(vcpu);
out: out:
...@@ -11527,7 +11533,7 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu) ...@@ -11527,7 +11533,7 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
goto out; goto out;
} }
r = static_call(kvm_x86_vcpu_pre_run)(vcpu); r = kvm_x86_call(vcpu_pre_run)(vcpu);
if (r <= 0) if (r <= 0)
goto out; goto out;
...@@ -11655,10 +11661,10 @@ static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs) ...@@ -11655,10 +11661,10 @@ static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR); kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR); kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
static_call(kvm_x86_get_idt)(vcpu, &dt); kvm_x86_call(get_idt)(vcpu, &dt);
sregs->idt.limit = dt.size; sregs->idt.limit = dt.size;
sregs->idt.base = dt.address; sregs->idt.base = dt.address;
static_call(kvm_x86_get_gdt)(vcpu, &dt); kvm_x86_call(get_gdt)(vcpu, &dt);
sregs->gdt.limit = dt.size; sregs->gdt.limit = dt.size;
sregs->gdt.base = dt.address; sregs->gdt.base = dt.address;
...@@ -11864,27 +11870,27 @@ static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs, ...@@ -11864,27 +11870,27 @@ static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs,
dt.size = sregs->idt.limit; dt.size = sregs->idt.limit;
dt.address = sregs->idt.base; dt.address = sregs->idt.base;
static_call(kvm_x86_set_idt)(vcpu, &dt); kvm_x86_call(set_idt)(vcpu, &dt);
dt.size = sregs->gdt.limit; dt.size = sregs->gdt.limit;
dt.address = sregs->gdt.base; dt.address = sregs->gdt.base;
static_call(kvm_x86_set_gdt)(vcpu, &dt); kvm_x86_call(set_gdt)(vcpu, &dt);
vcpu->arch.cr2 = sregs->cr2; vcpu->arch.cr2 = sregs->cr2;
*mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3; *mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
vcpu->arch.cr3 = sregs->cr3; vcpu->arch.cr3 = sregs->cr3;
kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3); kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
static_call(kvm_x86_post_set_cr3)(vcpu, sregs->cr3); kvm_x86_call(post_set_cr3)(vcpu, sregs->cr3);
kvm_set_cr8(vcpu, sregs->cr8); kvm_set_cr8(vcpu, sregs->cr8);
*mmu_reset_needed |= vcpu->arch.efer != sregs->efer; *mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
static_call(kvm_x86_set_efer)(vcpu, sregs->efer); kvm_x86_call(set_efer)(vcpu, sregs->efer);
*mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0; *mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0); kvm_x86_call(set_cr0)(vcpu, sregs->cr0);
*mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4; *mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4); kvm_x86_call(set_cr4)(vcpu, sregs->cr4);
if (update_pdptrs) { if (update_pdptrs) {
idx = srcu_read_lock(&vcpu->kvm->srcu); idx = srcu_read_lock(&vcpu->kvm->srcu);
...@@ -12062,7 +12068,7 @@ int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu, ...@@ -12062,7 +12068,7 @@ int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
*/ */
kvm_set_rflags(vcpu, rflags); kvm_set_rflags(vcpu, rflags);
static_call(kvm_x86_update_exception_bitmap)(vcpu); kvm_x86_call(update_exception_bitmap)(vcpu);
kvm_arch_vcpu_guestdbg_update_apicv_inhibit(vcpu->kvm); kvm_arch_vcpu_guestdbg_update_apicv_inhibit(vcpu->kvm);
...@@ -12199,7 +12205,7 @@ int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id) ...@@ -12199,7 +12205,7 @@ int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
if (id >= kvm->arch.max_vcpu_ids) if (id >= kvm->arch.max_vcpu_ids)
return -EINVAL; return -EINVAL;
return static_call(kvm_x86_vcpu_precreate)(kvm); return kvm_x86_call(vcpu_precreate)(kvm);
} }
int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu) int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
...@@ -12270,7 +12276,7 @@ int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu) ...@@ -12270,7 +12276,7 @@ int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
vcpu->arch.hv_root_tdp = INVALID_PAGE; vcpu->arch.hv_root_tdp = INVALID_PAGE;
#endif #endif
r = static_call(kvm_x86_vcpu_create)(vcpu); r = kvm_x86_call(vcpu_create)(vcpu);
if (r) if (r)
goto free_guest_fpu; goto free_guest_fpu;
...@@ -12327,7 +12333,7 @@ void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu) ...@@ -12327,7 +12333,7 @@ void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
kvmclock_reset(vcpu); kvmclock_reset(vcpu);
static_call(kvm_x86_vcpu_free)(vcpu); kvm_x86_call(vcpu_free)(vcpu);
kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt); kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
free_cpumask_var(vcpu->arch.wbinvd_dirty_mask); free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
...@@ -12445,7 +12451,7 @@ void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) ...@@ -12445,7 +12451,7 @@ void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
cpuid_0x1 = kvm_find_cpuid_entry(vcpu, 1); cpuid_0x1 = kvm_find_cpuid_entry(vcpu, 1);
kvm_rdx_write(vcpu, cpuid_0x1 ? cpuid_0x1->eax : 0x600); kvm_rdx_write(vcpu, cpuid_0x1 ? cpuid_0x1->eax : 0x600);
static_call(kvm_x86_vcpu_reset)(vcpu, init_event); kvm_x86_call(vcpu_reset)(vcpu, init_event);
kvm_set_rflags(vcpu, X86_EFLAGS_FIXED); kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
kvm_rip_write(vcpu, 0xfff0); kvm_rip_write(vcpu, 0xfff0);
...@@ -12464,10 +12470,10 @@ void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) ...@@ -12464,10 +12470,10 @@ void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
else else
new_cr0 |= X86_CR0_NW | X86_CR0_CD; new_cr0 |= X86_CR0_NW | X86_CR0_CD;
static_call(kvm_x86_set_cr0)(vcpu, new_cr0); kvm_x86_call(set_cr0)(vcpu, new_cr0);
static_call(kvm_x86_set_cr4)(vcpu, 0); kvm_x86_call(set_cr4)(vcpu, 0);
static_call(kvm_x86_set_efer)(vcpu, 0); kvm_x86_call(set_efer)(vcpu, 0);
static_call(kvm_x86_update_exception_bitmap)(vcpu); kvm_x86_call(update_exception_bitmap)(vcpu);
/* /*
* On the standard CR0/CR4/EFER modification paths, there are several * On the standard CR0/CR4/EFER modification paths, there are several
...@@ -12524,7 +12530,7 @@ int kvm_arch_hardware_enable(void) ...@@ -12524,7 +12530,7 @@ int kvm_arch_hardware_enable(void)
if (ret) if (ret)
return ret; return ret;
ret = static_call(kvm_x86_hardware_enable)(); ret = kvm_x86_call(hardware_enable)();
if (ret != 0) if (ret != 0)
return ret; return ret;
...@@ -12606,7 +12612,7 @@ int kvm_arch_hardware_enable(void) ...@@ -12606,7 +12612,7 @@ int kvm_arch_hardware_enable(void)
void kvm_arch_hardware_disable(void) void kvm_arch_hardware_disable(void)
{ {
static_call(kvm_x86_hardware_disable)(); kvm_x86_call(hardware_disable)();
drop_user_return_notifiers(); drop_user_return_notifiers();
} }
...@@ -12647,7 +12653,7 @@ int kvm_arch_init_vm(struct kvm *kvm, unsigned long type) ...@@ -12647,7 +12653,7 @@ int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
kvm_mmu_init_vm(kvm); kvm_mmu_init_vm(kvm);
ret = static_call(kvm_x86_vm_init)(kvm); ret = kvm_x86_call(vm_init)(kvm);
if (ret) if (ret)
goto out_uninit_mmu; goto out_uninit_mmu;
...@@ -12822,7 +12828,7 @@ void kvm_arch_destroy_vm(struct kvm *kvm) ...@@ -12822,7 +12828,7 @@ void kvm_arch_destroy_vm(struct kvm *kvm)
mutex_unlock(&kvm->slots_lock); mutex_unlock(&kvm->slots_lock);
} }
kvm_unload_vcpu_mmus(kvm); kvm_unload_vcpu_mmus(kvm);
static_call(kvm_x86_vm_destroy)(kvm); kvm_x86_call(vm_destroy)(kvm);
kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1)); kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
kvm_pic_destroy(kvm); kvm_pic_destroy(kvm);
kvm_ioapic_destroy(kvm); kvm_ioapic_destroy(kvm);
...@@ -13168,13 +13174,13 @@ static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu) ...@@ -13168,13 +13174,13 @@ static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
if (kvm_test_request(KVM_REQ_NMI, vcpu) || if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
(vcpu->arch.nmi_pending && (vcpu->arch.nmi_pending &&
static_call(kvm_x86_nmi_allowed)(vcpu, false))) kvm_x86_call(nmi_allowed)(vcpu, false)))
return true; return true;
#ifdef CONFIG_KVM_SMM #ifdef CONFIG_KVM_SMM
if (kvm_test_request(KVM_REQ_SMI, vcpu) || if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
(vcpu->arch.smi_pending && (vcpu->arch.smi_pending &&
static_call(kvm_x86_smi_allowed)(vcpu, false))) kvm_x86_call(smi_allowed)(vcpu, false)))
return true; return true;
#endif #endif
...@@ -13209,7 +13215,7 @@ int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu) ...@@ -13209,7 +13215,7 @@ int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu) bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
{ {
return kvm_vcpu_apicv_active(vcpu) && return kvm_vcpu_apicv_active(vcpu) &&
static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu); kvm_x86_call(dy_apicv_has_pending_interrupt)(vcpu);
} }
bool kvm_arch_vcpu_preempted_in_kernel(struct kvm_vcpu *vcpu) bool kvm_arch_vcpu_preempted_in_kernel(struct kvm_vcpu *vcpu)
...@@ -13237,7 +13243,7 @@ bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu) ...@@ -13237,7 +13243,7 @@ bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
if (vcpu->arch.guest_state_protected) if (vcpu->arch.guest_state_protected)
return true; return true;
return static_call(kvm_x86_get_cpl)(vcpu) == 0; return kvm_x86_call(get_cpl)(vcpu) == 0;
} }
unsigned long kvm_arch_vcpu_get_ip(struct kvm_vcpu *vcpu) unsigned long kvm_arch_vcpu_get_ip(struct kvm_vcpu *vcpu)
...@@ -13252,7 +13258,7 @@ int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu) ...@@ -13252,7 +13258,7 @@ int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu) int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
{ {
return static_call(kvm_x86_interrupt_allowed)(vcpu, false); return kvm_x86_call(interrupt_allowed)(vcpu, false);
} }
unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu) unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
...@@ -13278,7 +13284,7 @@ unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu) ...@@ -13278,7 +13284,7 @@ unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
{ {
unsigned long rflags; unsigned long rflags;
rflags = static_call(kvm_x86_get_rflags)(vcpu); rflags = kvm_x86_call(get_rflags)(vcpu);
if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
rflags &= ~X86_EFLAGS_TF; rflags &= ~X86_EFLAGS_TF;
return rflags; return rflags;
...@@ -13290,7 +13296,7 @@ static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) ...@@ -13290,7 +13296,7 @@ static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP && if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip)) kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
rflags |= X86_EFLAGS_TF; rflags |= X86_EFLAGS_TF;
static_call(kvm_x86_set_rflags)(vcpu, rflags); kvm_x86_call(set_rflags)(vcpu, rflags);
} }
void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
...@@ -13402,7 +13408,7 @@ static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu) ...@@ -13402,7 +13408,7 @@ static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
return false; return false;
if (vcpu->arch.apf.send_user_only && if (vcpu->arch.apf.send_user_only &&
static_call(kvm_x86_get_cpl)(vcpu) == 0) kvm_x86_call(get_cpl)(vcpu) == 0)
return false; return false;
if (is_guest_mode(vcpu)) { if (is_guest_mode(vcpu)) {
...@@ -13513,7 +13519,7 @@ bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu) ...@@ -13513,7 +13519,7 @@ bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
void kvm_arch_start_assignment(struct kvm *kvm) void kvm_arch_start_assignment(struct kvm *kvm)
{ {
if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1) if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1)
static_call(kvm_x86_pi_start_assignment)(kvm); kvm_x86_call(pi_start_assignment)(kvm);
} }
EXPORT_SYMBOL_GPL(kvm_arch_start_assignment); EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
...@@ -13576,9 +13582,8 @@ int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons, ...@@ -13576,9 +13582,8 @@ int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
irqfd->producer = prod; irqfd->producer = prod;
kvm_arch_start_assignment(irqfd->kvm); kvm_arch_start_assignment(irqfd->kvm);
ret = static_call(kvm_x86_pi_update_irte)(irqfd->kvm, ret = kvm_x86_call(pi_update_irte)(irqfd->kvm,
prod->irq, irqfd->gsi, 1); prod->irq, irqfd->gsi, 1);
if (ret) if (ret)
kvm_arch_end_assignment(irqfd->kvm); kvm_arch_end_assignment(irqfd->kvm);
...@@ -13601,7 +13606,8 @@ void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons, ...@@ -13601,7 +13606,8 @@ void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
* when the irq is masked/disabled or the consumer side (KVM * when the irq is masked/disabled or the consumer side (KVM
* int this case doesn't want to receive the interrupts. * int this case doesn't want to receive the interrupts.
*/ */
ret = static_call(kvm_x86_pi_update_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0); ret = kvm_x86_call(pi_update_irte)(irqfd->kvm,
prod->irq, irqfd->gsi, 0);
if (ret) if (ret)
printk(KERN_INFO "irq bypass consumer (token %p) unregistration" printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
" fails: %d\n", irqfd->consumer.token, ret); " fails: %d\n", irqfd->consumer.token, ret);
...@@ -13612,7 +13618,7 @@ void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons, ...@@ -13612,7 +13618,7 @@ void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq, int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
uint32_t guest_irq, bool set) uint32_t guest_irq, bool set)
{ {
return static_call(kvm_x86_pi_update_irte)(kvm, host_irq, guest_irq, set); return kvm_x86_call(pi_update_irte)(kvm, host_irq, guest_irq, set);
} }
bool kvm_arch_irqfd_route_changed(struct kvm_kernel_irq_routing_entry *old, bool kvm_arch_irqfd_route_changed(struct kvm_kernel_irq_routing_entry *old,
...@@ -13643,14 +13649,14 @@ bool kvm_arch_gmem_prepare_needed(struct kvm *kvm) ...@@ -13643,14 +13649,14 @@ bool kvm_arch_gmem_prepare_needed(struct kvm *kvm)
int kvm_arch_gmem_prepare(struct kvm *kvm, gfn_t gfn, kvm_pfn_t pfn, int max_order) int kvm_arch_gmem_prepare(struct kvm *kvm, gfn_t gfn, kvm_pfn_t pfn, int max_order)
{ {
return static_call(kvm_x86_gmem_prepare)(kvm, pfn, gfn, max_order); return kvm_x86_call(gmem_prepare)(kvm, pfn, gfn, max_order);
} }
#endif #endif
#ifdef CONFIG_HAVE_KVM_GMEM_INVALIDATE #ifdef CONFIG_HAVE_KVM_GMEM_INVALIDATE
void kvm_arch_gmem_invalidate(kvm_pfn_t start, kvm_pfn_t end) void kvm_arch_gmem_invalidate(kvm_pfn_t start, kvm_pfn_t end)
{ {
static_call(kvm_x86_gmem_invalidate)(start, end); kvm_x86_call(gmem_invalidate)(start, end);
} }
#endif #endif
......
...@@ -173,7 +173,7 @@ static inline bool is_64_bit_mode(struct kvm_vcpu *vcpu) ...@@ -173,7 +173,7 @@ static inline bool is_64_bit_mode(struct kvm_vcpu *vcpu)
if (!is_long_mode(vcpu)) if (!is_long_mode(vcpu))
return false; return false;
static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l); kvm_x86_call(get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
return cs_l; return cs_l;
} }
......
...@@ -1270,7 +1270,7 @@ int kvm_xen_write_hypercall_page(struct kvm_vcpu *vcpu, u64 data) ...@@ -1270,7 +1270,7 @@ int kvm_xen_write_hypercall_page(struct kvm_vcpu *vcpu, u64 data)
instructions[0] = 0xb8; instructions[0] = 0xb8;
/* vmcall / vmmcall */ /* vmcall / vmmcall */
static_call(kvm_x86_patch_hypercall)(vcpu, instructions + 5); kvm_x86_call(patch_hypercall)(vcpu, instructions + 5);
/* ret */ /* ret */
instructions[8] = 0xc3; instructions[8] = 0xc3;
...@@ -1650,7 +1650,7 @@ int kvm_xen_hypercall(struct kvm_vcpu *vcpu) ...@@ -1650,7 +1650,7 @@ int kvm_xen_hypercall(struct kvm_vcpu *vcpu)
params[5] = (u64)kvm_r9_read(vcpu); params[5] = (u64)kvm_r9_read(vcpu);
} }
#endif #endif
cpl = static_call(kvm_x86_get_cpl)(vcpu); cpl = kvm_x86_call(get_cpl)(vcpu);
trace_kvm_xen_hypercall(cpl, input, params[0], params[1], params[2], trace_kvm_xen_hypercall(cpl, input, params[0], params[1], params[2],
params[3], params[4], params[5]); params[3], params[4], params[5]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment