2 * KVM paravirt_ops implementation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * Copyright (C) 2007, Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
19 * Copyright IBM Corporation, 2007
20 * Authors: Anthony Liguori <aliguori@us.ibm.com>
23 #include <linux/context_tracking.h>
24 #include <linux/init.h>
25 #include <linux/kernel.h>
26 #include <linux/kvm_para.h>
27 #include <linux/cpu.h>
29 #include <linux/highmem.h>
30 #include <linux/hardirq.h>
31 #include <linux/notifier.h>
32 #include <linux/reboot.h>
33 #include <linux/hash.h>
34 #include <linux/sched.h>
35 #include <linux/slab.h>
36 #include <linux/kprobes.h>
37 #include <linux/debugfs.h>
38 #include <linux/nmi.h>
39 #include <linux/swait.h>
40 #include <asm/timer.h>
42 #include <asm/traps.h>
44 #include <asm/tlbflush.h>
46 #include <asm/apicdef.h>
47 #include <asm/hypervisor.h>
50 static int kvmapf
= 1;
52 static int __init
parse_no_kvmapf(char *arg
)
58 early_param("no-kvmapf", parse_no_kvmapf
);
60 static int steal_acc
= 1;
61 static int __init
parse_no_stealacc(char *arg
)
67 early_param("no-steal-acc", parse_no_stealacc
);
69 static DEFINE_PER_CPU_DECRYPTED(struct kvm_vcpu_pv_apf_data
, apf_reason
) __aligned(64);
70 static DEFINE_PER_CPU_DECRYPTED(struct kvm_steal_time
, steal_time
) __aligned(64);
71 static int has_steal_clock
= 0;
74 * No need for any "IO delay" on KVM
76 static void kvm_io_delay(void)
80 #define KVM_TASK_SLEEP_HASHBITS 8
81 #define KVM_TASK_SLEEP_HASHSIZE (1<<KVM_TASK_SLEEP_HASHBITS)
83 struct kvm_task_sleep_node
{
84 struct hlist_node link
;
85 struct swait_queue_head wq
;
91 static struct kvm_task_sleep_head
{
93 struct hlist_head list
;
94 } async_pf_sleepers
[KVM_TASK_SLEEP_HASHSIZE
];
96 static struct kvm_task_sleep_node
*_find_apf_task(struct kvm_task_sleep_head
*b
,
101 hlist_for_each(p
, &b
->list
) {
102 struct kvm_task_sleep_node
*n
=
103 hlist_entry(p
, typeof(*n
), link
);
104 if (n
->token
== token
)
112 * @interrupt_kernel: Is this called from a routine which interrupts the kernel
113 * (other than user space)?
115 void kvm_async_pf_task_wait(u32 token
, int interrupt_kernel
)
117 u32 key
= hash_32(token
, KVM_TASK_SLEEP_HASHBITS
);
118 struct kvm_task_sleep_head
*b
= &async_pf_sleepers
[key
];
119 struct kvm_task_sleep_node n
, *e
;
120 DECLARE_SWAITQUEUE(wait
);
124 raw_spin_lock(&b
->lock
);
125 e
= _find_apf_task(b
, token
);
127 /* dummy entry exist -> wake up was delivered ahead of PF */
130 raw_spin_unlock(&b
->lock
);
137 n
.cpu
= smp_processor_id();
138 n
.halted
= is_idle_task(current
) ||
139 (IS_ENABLED(CONFIG_PREEMPT_COUNT
)
140 ? preempt_count() > 1 || rcu_preempt_depth()
142 init_swait_queue_head(&n
.wq
);
143 hlist_add_head(&n
.link
, &b
->list
);
144 raw_spin_unlock(&b
->lock
);
148 prepare_to_swait_exclusive(&n
.wq
, &wait
, TASK_UNINTERRUPTIBLE
);
149 if (hlist_unhashed(&n
.link
))
160 * We cannot reschedule. So halt.
169 finish_swait(&n
.wq
, &wait
);
174 EXPORT_SYMBOL_GPL(kvm_async_pf_task_wait
);
176 static void apf_task_wake_one(struct kvm_task_sleep_node
*n
)
178 hlist_del_init(&n
->link
);
180 smp_send_reschedule(n
->cpu
);
181 else if (swq_has_sleeper(&n
->wq
))
182 swake_up_one(&n
->wq
);
185 static void apf_task_wake_all(void)
189 for (i
= 0; i
< KVM_TASK_SLEEP_HASHSIZE
; i
++) {
190 struct hlist_node
*p
, *next
;
191 struct kvm_task_sleep_head
*b
= &async_pf_sleepers
[i
];
192 raw_spin_lock(&b
->lock
);
193 hlist_for_each_safe(p
, next
, &b
->list
) {
194 struct kvm_task_sleep_node
*n
=
195 hlist_entry(p
, typeof(*n
), link
);
196 if (n
->cpu
== smp_processor_id())
197 apf_task_wake_one(n
);
199 raw_spin_unlock(&b
->lock
);
203 void kvm_async_pf_task_wake(u32 token
)
205 u32 key
= hash_32(token
, KVM_TASK_SLEEP_HASHBITS
);
206 struct kvm_task_sleep_head
*b
= &async_pf_sleepers
[key
];
207 struct kvm_task_sleep_node
*n
;
215 raw_spin_lock(&b
->lock
);
216 n
= _find_apf_task(b
, token
);
219 * async PF was not yet handled.
220 * Add dummy entry for the token.
222 n
= kzalloc(sizeof(*n
), GFP_ATOMIC
);
225 * Allocation failed! Busy wait while other cpu
228 raw_spin_unlock(&b
->lock
);
233 n
->cpu
= smp_processor_id();
234 init_swait_queue_head(&n
->wq
);
235 hlist_add_head(&n
->link
, &b
->list
);
237 apf_task_wake_one(n
);
238 raw_spin_unlock(&b
->lock
);
241 EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake
);
243 u32
kvm_read_and_reset_pf_reason(void)
247 if (__this_cpu_read(apf_reason
.enabled
)) {
248 reason
= __this_cpu_read(apf_reason
.reason
);
249 __this_cpu_write(apf_reason
.reason
, 0);
254 EXPORT_SYMBOL_GPL(kvm_read_and_reset_pf_reason
);
255 NOKPROBE_SYMBOL(kvm_read_and_reset_pf_reason
);
258 do_async_page_fault(struct pt_regs
*regs
, unsigned long error_code
)
260 enum ctx_state prev_state
;
262 switch (kvm_read_and_reset_pf_reason()) {
264 do_page_fault(regs
, error_code
);
266 case KVM_PV_REASON_PAGE_NOT_PRESENT
:
267 /* page is swapped out by the host. */
268 prev_state
= exception_enter();
269 kvm_async_pf_task_wait((u32
)read_cr2(), !user_mode(regs
));
270 exception_exit(prev_state
);
272 case KVM_PV_REASON_PAGE_READY
:
274 kvm_async_pf_task_wake((u32
)read_cr2());
279 NOKPROBE_SYMBOL(do_async_page_fault
);
281 static void __init
paravirt_ops_setup(void)
283 pv_info
.name
= "KVM";
285 if (kvm_para_has_feature(KVM_FEATURE_NOP_IO_DELAY
))
286 pv_ops
.cpu
.io_delay
= kvm_io_delay
;
288 #ifdef CONFIG_X86_IO_APIC
293 static void kvm_register_steal_time(void)
295 int cpu
= smp_processor_id();
296 struct kvm_steal_time
*st
= &per_cpu(steal_time
, cpu
);
298 if (!has_steal_clock
)
301 wrmsrl(MSR_KVM_STEAL_TIME
, (slow_virt_to_phys(st
) | KVM_MSR_ENABLED
));
302 pr_info("kvm-stealtime: cpu %d, msr %llx\n",
303 cpu
, (unsigned long long) slow_virt_to_phys(st
));
306 static DEFINE_PER_CPU_DECRYPTED(unsigned long, kvm_apic_eoi
) = KVM_PV_EOI_DISABLED
;
308 static notrace
void kvm_guest_apic_eoi_write(u32 reg
, u32 val
)
311 * This relies on __test_and_clear_bit to modify the memory
312 * in a way that is atomic with respect to the local CPU.
313 * The hypervisor only accesses this memory from the local CPU so
314 * there's no need for lock or memory barriers.
315 * An optimization barrier is implied in apic write.
317 if (__test_and_clear_bit(KVM_PV_EOI_BIT
, this_cpu_ptr(&kvm_apic_eoi
)))
319 apic
->native_eoi_write(APIC_EOI
, APIC_EOI_ACK
);
322 static void kvm_guest_cpu_init(void)
324 if (!kvm_para_available())
327 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF
) && kvmapf
) {
328 u64 pa
= slow_virt_to_phys(this_cpu_ptr(&apf_reason
));
330 #ifdef CONFIG_PREEMPT
331 pa
|= KVM_ASYNC_PF_SEND_ALWAYS
;
333 pa
|= KVM_ASYNC_PF_ENABLED
;
335 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF_VMEXIT
))
336 pa
|= KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT
;
338 wrmsrl(MSR_KVM_ASYNC_PF_EN
, pa
);
339 __this_cpu_write(apf_reason
.enabled
, 1);
340 printk(KERN_INFO
"KVM setup async PF for cpu %d\n",
344 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI
)) {
346 /* Size alignment is implied but just to make it explicit. */
347 BUILD_BUG_ON(__alignof__(kvm_apic_eoi
) < 4);
348 __this_cpu_write(kvm_apic_eoi
, 0);
349 pa
= slow_virt_to_phys(this_cpu_ptr(&kvm_apic_eoi
))
351 wrmsrl(MSR_KVM_PV_EOI_EN
, pa
);
355 kvm_register_steal_time();
358 static void kvm_pv_disable_apf(void)
360 if (!__this_cpu_read(apf_reason
.enabled
))
363 wrmsrl(MSR_KVM_ASYNC_PF_EN
, 0);
364 __this_cpu_write(apf_reason
.enabled
, 0);
366 printk(KERN_INFO
"Unregister pv shared memory for cpu %d\n",
370 static void kvm_pv_guest_cpu_reboot(void *unused
)
373 * We disable PV EOI before we load a new kernel by kexec,
374 * since MSR_KVM_PV_EOI_EN stores a pointer into old kernel's memory.
375 * New kernel can re-enable when it boots.
377 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI
))
378 wrmsrl(MSR_KVM_PV_EOI_EN
, 0);
379 kvm_pv_disable_apf();
380 kvm_disable_steal_time();
383 static int kvm_pv_reboot_notify(struct notifier_block
*nb
,
384 unsigned long code
, void *unused
)
386 if (code
== SYS_RESTART
)
387 on_each_cpu(kvm_pv_guest_cpu_reboot
, NULL
, 1);
391 static struct notifier_block kvm_pv_reboot_nb
= {
392 .notifier_call
= kvm_pv_reboot_notify
,
395 static u64
kvm_steal_clock(int cpu
)
398 struct kvm_steal_time
*src
;
401 src
= &per_cpu(steal_time
, cpu
);
403 version
= src
->version
;
407 } while ((version
& 1) || (version
!= src
->version
));
412 void kvm_disable_steal_time(void)
414 if (!has_steal_clock
)
417 wrmsr(MSR_KVM_STEAL_TIME
, 0, 0);
420 static inline void __set_percpu_decrypted(void *ptr
, unsigned long size
)
422 early_set_memory_decrypted((unsigned long) ptr
, size
);
426 * Iterate through all possible CPUs and map the memory region pointed
427 * by apf_reason, steal_time and kvm_apic_eoi as decrypted at once.
429 * Note: we iterate through all possible CPUs to ensure that CPUs
430 * hotplugged will have their per-cpu variable already mapped as
433 static void __init
sev_map_percpu_data(void)
440 for_each_possible_cpu(cpu
) {
441 __set_percpu_decrypted(&per_cpu(apf_reason
, cpu
), sizeof(apf_reason
));
442 __set_percpu_decrypted(&per_cpu(steal_time
, cpu
), sizeof(steal_time
));
443 __set_percpu_decrypted(&per_cpu(kvm_apic_eoi
, cpu
), sizeof(kvm_apic_eoi
));
448 #define KVM_IPI_CLUSTER_SIZE (2 * BITS_PER_LONG)
450 static void __send_ipi_mask(const struct cpumask
*mask
, int vector
)
453 int cpu
, apic_id
, icr
;
454 int min
= 0, max
= 0;
456 __uint128_t ipi_bitmap
= 0;
461 if (cpumask_empty(mask
))
464 local_irq_save(flags
);
468 icr
= APIC_DM_FIXED
| vector
;
475 for_each_cpu(cpu
, mask
) {
476 apic_id
= per_cpu(x86_cpu_to_apicid
, cpu
);
479 } else if (apic_id
< min
&& max
- apic_id
< KVM_IPI_CLUSTER_SIZE
) {
480 ipi_bitmap
<<= min
- apic_id
;
482 } else if (apic_id
< min
+ KVM_IPI_CLUSTER_SIZE
) {
483 max
= apic_id
< max
? max
: apic_id
;
485 kvm_hypercall4(KVM_HC_SEND_IPI
, (unsigned long)ipi_bitmap
,
486 (unsigned long)(ipi_bitmap
>> BITS_PER_LONG
), min
, icr
);
490 __set_bit(apic_id
- min
, (unsigned long *)&ipi_bitmap
);
494 kvm_hypercall4(KVM_HC_SEND_IPI
, (unsigned long)ipi_bitmap
,
495 (unsigned long)(ipi_bitmap
>> BITS_PER_LONG
), min
, icr
);
498 local_irq_restore(flags
);
501 static void kvm_send_ipi_mask(const struct cpumask
*mask
, int vector
)
503 __send_ipi_mask(mask
, vector
);
506 static void kvm_send_ipi_mask_allbutself(const struct cpumask
*mask
, int vector
)
508 unsigned int this_cpu
= smp_processor_id();
509 struct cpumask new_mask
;
510 const struct cpumask
*local_mask
;
512 cpumask_copy(&new_mask
, mask
);
513 cpumask_clear_cpu(this_cpu
, &new_mask
);
514 local_mask
= &new_mask
;
515 __send_ipi_mask(local_mask
, vector
);
518 static void kvm_send_ipi_allbutself(int vector
)
520 kvm_send_ipi_mask_allbutself(cpu_online_mask
, vector
);
523 static void kvm_send_ipi_all(int vector
)
525 __send_ipi_mask(cpu_online_mask
, vector
);
529 * Set the IPI entry points
531 static void kvm_setup_pv_ipi(void)
533 apic
->send_IPI_mask
= kvm_send_ipi_mask
;
534 apic
->send_IPI_mask_allbutself
= kvm_send_ipi_mask_allbutself
;
535 apic
->send_IPI_allbutself
= kvm_send_ipi_allbutself
;
536 apic
->send_IPI_all
= kvm_send_ipi_all
;
537 pr_info("KVM setup pv IPIs\n");
540 static void __init
kvm_smp_prepare_cpus(unsigned int max_cpus
)
542 native_smp_prepare_cpus(max_cpus
);
543 if (kvm_para_has_hint(KVM_HINTS_REALTIME
))
544 static_branch_disable(&virt_spin_lock_key
);
547 static void __init
kvm_smp_prepare_boot_cpu(void)
550 * Map the per-cpu variables as decrypted before kvm_guest_cpu_init()
551 * shares the guest physical address with the hypervisor.
553 sev_map_percpu_data();
555 kvm_guest_cpu_init();
556 native_smp_prepare_boot_cpu();
560 static void kvm_guest_cpu_offline(void)
562 kvm_disable_steal_time();
563 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI
))
564 wrmsrl(MSR_KVM_PV_EOI_EN
, 0);
565 kvm_pv_disable_apf();
569 static int kvm_cpu_online(unsigned int cpu
)
572 kvm_guest_cpu_init();
577 static int kvm_cpu_down_prepare(unsigned int cpu
)
580 kvm_guest_cpu_offline();
586 static void __init
kvm_apf_trap_init(void)
588 update_intr_gate(X86_TRAP_PF
, async_page_fault
);
591 static DEFINE_PER_CPU(cpumask_var_t
, __pv_tlb_mask
);
593 static void kvm_flush_tlb_others(const struct cpumask
*cpumask
,
594 const struct flush_tlb_info
*info
)
598 struct kvm_steal_time
*src
;
599 struct cpumask
*flushmask
= this_cpu_cpumask_var_ptr(__pv_tlb_mask
);
601 cpumask_copy(flushmask
, cpumask
);
603 * We have to call flush only on online vCPUs. And
604 * queue flush_on_enter for pre-empted vCPUs
606 for_each_cpu(cpu
, flushmask
) {
607 src
= &per_cpu(steal_time
, cpu
);
608 state
= READ_ONCE(src
->preempted
);
609 if ((state
& KVM_VCPU_PREEMPTED
)) {
610 if (try_cmpxchg(&src
->preempted
, &state
,
611 state
| KVM_VCPU_FLUSH_TLB
))
612 __cpumask_clear_cpu(cpu
, flushmask
);
616 native_flush_tlb_others(flushmask
, info
);
619 static void __init
kvm_guest_init(void)
623 if (!kvm_para_available())
626 paravirt_ops_setup();
627 register_reboot_notifier(&kvm_pv_reboot_nb
);
628 for (i
= 0; i
< KVM_TASK_SLEEP_HASHSIZE
; i
++)
629 raw_spin_lock_init(&async_pf_sleepers
[i
].lock
);
630 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF
))
631 x86_init
.irqs
.trap_init
= kvm_apf_trap_init
;
633 if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME
)) {
635 pv_ops
.time
.steal_clock
= kvm_steal_clock
;
638 if (kvm_para_has_feature(KVM_FEATURE_PV_TLB_FLUSH
) &&
639 !kvm_para_has_hint(KVM_HINTS_REALTIME
) &&
640 kvm_para_has_feature(KVM_FEATURE_STEAL_TIME
)) {
641 pv_ops
.mmu
.flush_tlb_others
= kvm_flush_tlb_others
;
642 pv_ops
.mmu
.tlb_remove_table
= tlb_remove_table
;
645 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI
))
646 apic_set_eoi_write(kvm_guest_apic_eoi_write
);
649 smp_ops
.smp_prepare_cpus
= kvm_smp_prepare_cpus
;
650 smp_ops
.smp_prepare_boot_cpu
= kvm_smp_prepare_boot_cpu
;
651 if (cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN
, "x86/kvm:online",
652 kvm_cpu_online
, kvm_cpu_down_prepare
) < 0)
653 pr_err("kvm_guest: Failed to install cpu hotplug callbacks\n");
655 sev_map_percpu_data();
656 kvm_guest_cpu_init();
660 * Hard lockup detection is enabled by default. Disable it, as guests
661 * can get false positives too easily, for example if the host is
664 hardlockup_detector_disable();
667 static noinline
uint32_t __kvm_cpuid_base(void)
669 if (boot_cpu_data
.cpuid_level
< 0)
670 return 0; /* So we don't blow up on old processors */
672 if (boot_cpu_has(X86_FEATURE_HYPERVISOR
))
673 return hypervisor_cpuid_base("KVMKVMKVM\0\0\0", 0);
678 static inline uint32_t kvm_cpuid_base(void)
680 static int kvm_cpuid_base
= -1;
682 if (kvm_cpuid_base
== -1)
683 kvm_cpuid_base
= __kvm_cpuid_base();
685 return kvm_cpuid_base
;
688 bool kvm_para_available(void)
690 return kvm_cpuid_base() != 0;
692 EXPORT_SYMBOL_GPL(kvm_para_available
);
694 unsigned int kvm_arch_para_features(void)
696 return cpuid_eax(kvm_cpuid_base() | KVM_CPUID_FEATURES
);
699 unsigned int kvm_arch_para_hints(void)
701 return cpuid_edx(kvm_cpuid_base() | KVM_CPUID_FEATURES
);
704 static uint32_t __init
kvm_detect(void)
706 return kvm_cpuid_base();
709 static void __init
kvm_apic_init(void)
711 #if defined(CONFIG_SMP)
712 if (kvm_para_has_feature(KVM_FEATURE_PV_SEND_IPI
))
717 static void __init
kvm_init_platform(void)
720 x86_platform
.apic_post_init
= kvm_apic_init
;
723 const __initconst
struct hypervisor_x86 x86_hyper_kvm
= {
725 .detect
= kvm_detect
,
726 .type
= X86_HYPER_KVM
,
727 .init
.guest_late_init
= kvm_guest_init
,
728 .init
.x2apic_available
= kvm_para_available
,
729 .init
.init_platform
= kvm_init_platform
,
732 static __init
int activate_jump_labels(void)
734 if (has_steal_clock
) {
735 static_key_slow_inc(¶virt_steal_enabled
);
737 static_key_slow_inc(¶virt_steal_rq_enabled
);
742 arch_initcall(activate_jump_labels
);
744 static __init
int kvm_setup_pv_tlb_flush(void)
748 if (kvm_para_has_feature(KVM_FEATURE_PV_TLB_FLUSH
) &&
749 !kvm_para_has_hint(KVM_HINTS_REALTIME
) &&
750 kvm_para_has_feature(KVM_FEATURE_STEAL_TIME
)) {
751 for_each_possible_cpu(cpu
) {
752 zalloc_cpumask_var_node(per_cpu_ptr(&__pv_tlb_mask
, cpu
),
753 GFP_KERNEL
, cpu_to_node(cpu
));
755 pr_info("KVM setup pv remote TLB flush\n");
760 arch_initcall(kvm_setup_pv_tlb_flush
);
762 #ifdef CONFIG_PARAVIRT_SPINLOCKS
764 /* Kick a cpu by its apicid. Used to wake up a halted vcpu */
765 static void kvm_kick_cpu(int cpu
)
768 unsigned long flags
= 0;
770 apicid
= per_cpu(x86_cpu_to_apicid
, cpu
);
771 kvm_hypercall2(KVM_HC_KICK_CPU
, flags
, apicid
);
774 #include <asm/qspinlock.h>
776 static void kvm_wait(u8
*ptr
, u8 val
)
783 local_irq_save(flags
);
785 if (READ_ONCE(*ptr
) != val
)
789 * halt until it's our turn and kicked. Note that we do safe halt
790 * for irq enabled case to avoid hang when lock info is overwritten
791 * in irq spinlock slowpath and no spurious interrupt occur to save us.
793 if (arch_irqs_disabled_flags(flags
))
799 local_irq_restore(flags
);
803 __visible
bool __kvm_vcpu_is_preempted(long cpu
)
805 struct kvm_steal_time
*src
= &per_cpu(steal_time
, cpu
);
807 return !!(src
->preempted
& KVM_VCPU_PREEMPTED
);
809 PV_CALLEE_SAVE_REGS_THUNK(__kvm_vcpu_is_preempted
);
813 #include <asm/asm-offsets.h>
815 extern bool __raw_callee_save___kvm_vcpu_is_preempted(long);
818 * Hand-optimize version for x86-64 to avoid 8 64-bit register saving and
819 * restoring to/from the stack.
822 ".pushsection .text;"
823 ".global __raw_callee_save___kvm_vcpu_is_preempted;"
824 ".type __raw_callee_save___kvm_vcpu_is_preempted, @function;"
825 "__raw_callee_save___kvm_vcpu_is_preempted:"
826 "movq __per_cpu_offset(,%rdi,8), %rax;"
827 "cmpb $0, " __stringify(KVM_STEAL_TIME_preempted
) "+steal_time(%rax);"
835 * Setup pv_lock_ops to exploit KVM_FEATURE_PV_UNHALT if present.
837 void __init
kvm_spinlock_init(void)
839 if (!kvm_para_available())
841 /* Does host kernel support KVM_FEATURE_PV_UNHALT? */
842 if (!kvm_para_has_feature(KVM_FEATURE_PV_UNHALT
))
845 if (kvm_para_has_hint(KVM_HINTS_REALTIME
))
848 /* Don't use the pvqspinlock code if there is only 1 vCPU. */
849 if (num_possible_cpus() == 1)
852 __pv_init_lock_hash();
853 pv_ops
.lock
.queued_spin_lock_slowpath
= __pv_queued_spin_lock_slowpath
;
854 pv_ops
.lock
.queued_spin_unlock
=
855 PV_CALLEE_SAVE(__pv_queued_spin_unlock
);
856 pv_ops
.lock
.wait
= kvm_wait
;
857 pv_ops
.lock
.kick
= kvm_kick_cpu
;
859 if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME
)) {
860 pv_ops
.lock
.vcpu_is_preempted
=
861 PV_CALLEE_SAVE(__kvm_vcpu_is_preempted
);
865 #endif /* CONFIG_PARAVIRT_SPINLOCKS */