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;
462 if (cpumask_empty(mask
))
465 local_irq_save(flags
);
469 icr
= APIC_DM_FIXED
| vector
;
476 for_each_cpu(cpu
, mask
) {
477 apic_id
= per_cpu(x86_cpu_to_apicid
, cpu
);
480 } else if (apic_id
< min
&& max
- apic_id
< KVM_IPI_CLUSTER_SIZE
) {
481 ipi_bitmap
<<= min
- apic_id
;
483 } else if (apic_id
< min
+ KVM_IPI_CLUSTER_SIZE
) {
484 max
= apic_id
< max
? max
: apic_id
;
486 ret
= kvm_hypercall4(KVM_HC_SEND_IPI
, (unsigned long)ipi_bitmap
,
487 (unsigned long)(ipi_bitmap
>> BITS_PER_LONG
), min
, icr
);
488 WARN_ONCE(ret
< 0, "KVM: failed to send PV IPI: %ld", ret
);
492 __set_bit(apic_id
- min
, (unsigned long *)&ipi_bitmap
);
496 ret
= kvm_hypercall4(KVM_HC_SEND_IPI
, (unsigned long)ipi_bitmap
,
497 (unsigned long)(ipi_bitmap
>> BITS_PER_LONG
), min
, icr
);
498 WARN_ONCE(ret
< 0, "KVM: failed to send PV IPI: %ld", ret
);
501 local_irq_restore(flags
);
504 static void kvm_send_ipi_mask(const struct cpumask
*mask
, int vector
)
506 __send_ipi_mask(mask
, vector
);
509 static void kvm_send_ipi_mask_allbutself(const struct cpumask
*mask
, int vector
)
511 unsigned int this_cpu
= smp_processor_id();
512 struct cpumask new_mask
;
513 const struct cpumask
*local_mask
;
515 cpumask_copy(&new_mask
, mask
);
516 cpumask_clear_cpu(this_cpu
, &new_mask
);
517 local_mask
= &new_mask
;
518 __send_ipi_mask(local_mask
, vector
);
521 static void kvm_send_ipi_allbutself(int vector
)
523 kvm_send_ipi_mask_allbutself(cpu_online_mask
, vector
);
526 static void kvm_send_ipi_all(int vector
)
528 __send_ipi_mask(cpu_online_mask
, vector
);
532 * Set the IPI entry points
534 static void kvm_setup_pv_ipi(void)
536 apic
->send_IPI_mask
= kvm_send_ipi_mask
;
537 apic
->send_IPI_mask_allbutself
= kvm_send_ipi_mask_allbutself
;
538 apic
->send_IPI_allbutself
= kvm_send_ipi_allbutself
;
539 apic
->send_IPI_all
= kvm_send_ipi_all
;
540 pr_info("KVM setup pv IPIs\n");
543 static void __init
kvm_smp_prepare_cpus(unsigned int max_cpus
)
545 native_smp_prepare_cpus(max_cpus
);
546 if (kvm_para_has_hint(KVM_HINTS_REALTIME
))
547 static_branch_disable(&virt_spin_lock_key
);
550 static void __init
kvm_smp_prepare_boot_cpu(void)
553 * Map the per-cpu variables as decrypted before kvm_guest_cpu_init()
554 * shares the guest physical address with the hypervisor.
556 sev_map_percpu_data();
558 kvm_guest_cpu_init();
559 native_smp_prepare_boot_cpu();
563 static void kvm_guest_cpu_offline(void)
565 kvm_disable_steal_time();
566 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI
))
567 wrmsrl(MSR_KVM_PV_EOI_EN
, 0);
568 kvm_pv_disable_apf();
572 static int kvm_cpu_online(unsigned int cpu
)
575 kvm_guest_cpu_init();
580 static int kvm_cpu_down_prepare(unsigned int cpu
)
583 kvm_guest_cpu_offline();
589 static void __init
kvm_apf_trap_init(void)
591 update_intr_gate(X86_TRAP_PF
, async_page_fault
);
594 static DEFINE_PER_CPU(cpumask_var_t
, __pv_tlb_mask
);
596 static void kvm_flush_tlb_others(const struct cpumask
*cpumask
,
597 const struct flush_tlb_info
*info
)
601 struct kvm_steal_time
*src
;
602 struct cpumask
*flushmask
= this_cpu_cpumask_var_ptr(__pv_tlb_mask
);
604 cpumask_copy(flushmask
, cpumask
);
606 * We have to call flush only on online vCPUs. And
607 * queue flush_on_enter for pre-empted vCPUs
609 for_each_cpu(cpu
, flushmask
) {
610 src
= &per_cpu(steal_time
, cpu
);
611 state
= READ_ONCE(src
->preempted
);
612 if ((state
& KVM_VCPU_PREEMPTED
)) {
613 if (try_cmpxchg(&src
->preempted
, &state
,
614 state
| KVM_VCPU_FLUSH_TLB
))
615 __cpumask_clear_cpu(cpu
, flushmask
);
619 native_flush_tlb_others(flushmask
, info
);
622 static void __init
kvm_guest_init(void)
626 if (!kvm_para_available())
629 paravirt_ops_setup();
630 register_reboot_notifier(&kvm_pv_reboot_nb
);
631 for (i
= 0; i
< KVM_TASK_SLEEP_HASHSIZE
; i
++)
632 raw_spin_lock_init(&async_pf_sleepers
[i
].lock
);
633 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF
))
634 x86_init
.irqs
.trap_init
= kvm_apf_trap_init
;
636 if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME
)) {
638 pv_ops
.time
.steal_clock
= kvm_steal_clock
;
641 if (kvm_para_has_feature(KVM_FEATURE_PV_TLB_FLUSH
) &&
642 !kvm_para_has_hint(KVM_HINTS_REALTIME
) &&
643 kvm_para_has_feature(KVM_FEATURE_STEAL_TIME
)) {
644 pv_ops
.mmu
.flush_tlb_others
= kvm_flush_tlb_others
;
645 pv_ops
.mmu
.tlb_remove_table
= tlb_remove_table
;
648 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI
))
649 apic_set_eoi_write(kvm_guest_apic_eoi_write
);
652 smp_ops
.smp_prepare_cpus
= kvm_smp_prepare_cpus
;
653 smp_ops
.smp_prepare_boot_cpu
= kvm_smp_prepare_boot_cpu
;
654 if (cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN
, "x86/kvm:online",
655 kvm_cpu_online
, kvm_cpu_down_prepare
) < 0)
656 pr_err("kvm_guest: Failed to install cpu hotplug callbacks\n");
658 sev_map_percpu_data();
659 kvm_guest_cpu_init();
663 * Hard lockup detection is enabled by default. Disable it, as guests
664 * can get false positives too easily, for example if the host is
667 hardlockup_detector_disable();
670 static noinline
uint32_t __kvm_cpuid_base(void)
672 if (boot_cpu_data
.cpuid_level
< 0)
673 return 0; /* So we don't blow up on old processors */
675 if (boot_cpu_has(X86_FEATURE_HYPERVISOR
))
676 return hypervisor_cpuid_base("KVMKVMKVM\0\0\0", 0);
681 static inline uint32_t kvm_cpuid_base(void)
683 static int kvm_cpuid_base
= -1;
685 if (kvm_cpuid_base
== -1)
686 kvm_cpuid_base
= __kvm_cpuid_base();
688 return kvm_cpuid_base
;
691 bool kvm_para_available(void)
693 return kvm_cpuid_base() != 0;
695 EXPORT_SYMBOL_GPL(kvm_para_available
);
697 unsigned int kvm_arch_para_features(void)
699 return cpuid_eax(kvm_cpuid_base() | KVM_CPUID_FEATURES
);
702 unsigned int kvm_arch_para_hints(void)
704 return cpuid_edx(kvm_cpuid_base() | KVM_CPUID_FEATURES
);
707 static uint32_t __init
kvm_detect(void)
709 return kvm_cpuid_base();
712 static void __init
kvm_apic_init(void)
714 #if defined(CONFIG_SMP)
715 if (kvm_para_has_feature(KVM_FEATURE_PV_SEND_IPI
))
720 static void __init
kvm_init_platform(void)
723 x86_platform
.apic_post_init
= kvm_apic_init
;
726 const __initconst
struct hypervisor_x86 x86_hyper_kvm
= {
728 .detect
= kvm_detect
,
729 .type
= X86_HYPER_KVM
,
730 .init
.guest_late_init
= kvm_guest_init
,
731 .init
.x2apic_available
= kvm_para_available
,
732 .init
.init_platform
= kvm_init_platform
,
735 static __init
int activate_jump_labels(void)
737 if (has_steal_clock
) {
738 static_key_slow_inc(¶virt_steal_enabled
);
740 static_key_slow_inc(¶virt_steal_rq_enabled
);
745 arch_initcall(activate_jump_labels
);
747 static __init
int kvm_setup_pv_tlb_flush(void)
751 if (kvm_para_has_feature(KVM_FEATURE_PV_TLB_FLUSH
) &&
752 !kvm_para_has_hint(KVM_HINTS_REALTIME
) &&
753 kvm_para_has_feature(KVM_FEATURE_STEAL_TIME
)) {
754 for_each_possible_cpu(cpu
) {
755 zalloc_cpumask_var_node(per_cpu_ptr(&__pv_tlb_mask
, cpu
),
756 GFP_KERNEL
, cpu_to_node(cpu
));
758 pr_info("KVM setup pv remote TLB flush\n");
763 arch_initcall(kvm_setup_pv_tlb_flush
);
765 #ifdef CONFIG_PARAVIRT_SPINLOCKS
767 /* Kick a cpu by its apicid. Used to wake up a halted vcpu */
768 static void kvm_kick_cpu(int cpu
)
771 unsigned long flags
= 0;
773 apicid
= per_cpu(x86_cpu_to_apicid
, cpu
);
774 kvm_hypercall2(KVM_HC_KICK_CPU
, flags
, apicid
);
777 #include <asm/qspinlock.h>
779 static void kvm_wait(u8
*ptr
, u8 val
)
786 local_irq_save(flags
);
788 if (READ_ONCE(*ptr
) != val
)
792 * halt until it's our turn and kicked. Note that we do safe halt
793 * for irq enabled case to avoid hang when lock info is overwritten
794 * in irq spinlock slowpath and no spurious interrupt occur to save us.
796 if (arch_irqs_disabled_flags(flags
))
802 local_irq_restore(flags
);
806 __visible
bool __kvm_vcpu_is_preempted(long cpu
)
808 struct kvm_steal_time
*src
= &per_cpu(steal_time
, cpu
);
810 return !!(src
->preempted
& KVM_VCPU_PREEMPTED
);
812 PV_CALLEE_SAVE_REGS_THUNK(__kvm_vcpu_is_preempted
);
816 #include <asm/asm-offsets.h>
818 extern bool __raw_callee_save___kvm_vcpu_is_preempted(long);
821 * Hand-optimize version for x86-64 to avoid 8 64-bit register saving and
822 * restoring to/from the stack.
825 ".pushsection .text;"
826 ".global __raw_callee_save___kvm_vcpu_is_preempted;"
827 ".type __raw_callee_save___kvm_vcpu_is_preempted, @function;"
828 "__raw_callee_save___kvm_vcpu_is_preempted:"
829 "movq __per_cpu_offset(,%rdi,8), %rax;"
830 "cmpb $0, " __stringify(KVM_STEAL_TIME_preempted
) "+steal_time(%rax);"
838 * Setup pv_lock_ops to exploit KVM_FEATURE_PV_UNHALT if present.
840 void __init
kvm_spinlock_init(void)
842 if (!kvm_para_available())
844 /* Does host kernel support KVM_FEATURE_PV_UNHALT? */
845 if (!kvm_para_has_feature(KVM_FEATURE_PV_UNHALT
))
848 if (kvm_para_has_hint(KVM_HINTS_REALTIME
))
851 /* Don't use the pvqspinlock code if there is only 1 vCPU. */
852 if (num_possible_cpus() == 1)
855 __pv_init_lock_hash();
856 pv_ops
.lock
.queued_spin_lock_slowpath
= __pv_queued_spin_lock_slowpath
;
857 pv_ops
.lock
.queued_spin_unlock
=
858 PV_CALLEE_SAVE(__pv_queued_spin_unlock
);
859 pv_ops
.lock
.wait
= kvm_wait
;
860 pv_ops
.lock
.kick
= kvm_kick_cpu
;
862 if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME
)) {
863 pv_ops
.lock
.vcpu_is_preempted
=
864 PV_CALLEE_SAVE(__kvm_vcpu_is_preempted
);
868 #endif /* CONFIG_PARAVIRT_SPINLOCKS */