]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - include/linux/kvm_host.h
KVM: x86: Add EOI exit bitmap inference
[karo-tx-linux.git] / include / linux / kvm_host.h
1 #ifndef __KVM_HOST_H
2 #define __KVM_HOST_H
3
4 /*
5  * This work is licensed under the terms of the GNU GPL, version 2.  See
6  * the COPYING file in the top-level directory.
7  */
8
9 #include <linux/types.h>
10 #include <linux/hardirq.h>
11 #include <linux/list.h>
12 #include <linux/mutex.h>
13 #include <linux/spinlock.h>
14 #include <linux/signal.h>
15 #include <linux/sched.h>
16 #include <linux/bug.h>
17 #include <linux/mm.h>
18 #include <linux/mmu_notifier.h>
19 #include <linux/preempt.h>
20 #include <linux/msi.h>
21 #include <linux/slab.h>
22 #include <linux/rcupdate.h>
23 #include <linux/ratelimit.h>
24 #include <linux/err.h>
25 #include <linux/irqflags.h>
26 #include <linux/context_tracking.h>
27 #include <asm/signal.h>
28
29 #include <linux/kvm.h>
30 #include <linux/kvm_para.h>
31
32 #include <linux/kvm_types.h>
33
34 #include <asm/kvm_host.h>
35
36 /*
37  * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used
38  * in kvm, other bits are visible for userspace which are defined in
39  * include/linux/kvm_h.
40  */
41 #define KVM_MEMSLOT_INVALID     (1UL << 16)
42 #define KVM_MEMSLOT_INCOHERENT  (1UL << 17)
43
44 /* Two fragments for cross MMIO pages. */
45 #define KVM_MAX_MMIO_FRAGMENTS  2
46
47 #ifndef KVM_ADDRESS_SPACE_NUM
48 #define KVM_ADDRESS_SPACE_NUM   1
49 #endif
50
51 /*
52  * For the normal pfn, the highest 12 bits should be zero,
53  * so we can mask bit 62 ~ bit 52  to indicate the error pfn,
54  * mask bit 63 to indicate the noslot pfn.
55  */
56 #define KVM_PFN_ERR_MASK        (0x7ffULL << 52)
57 #define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
58 #define KVM_PFN_NOSLOT          (0x1ULL << 63)
59
60 #define KVM_PFN_ERR_FAULT       (KVM_PFN_ERR_MASK)
61 #define KVM_PFN_ERR_HWPOISON    (KVM_PFN_ERR_MASK + 1)
62 #define KVM_PFN_ERR_RO_FAULT    (KVM_PFN_ERR_MASK + 2)
63
64 /*
65  * error pfns indicate that the gfn is in slot but faild to
66  * translate it to pfn on host.
67  */
68 static inline bool is_error_pfn(pfn_t pfn)
69 {
70         return !!(pfn & KVM_PFN_ERR_MASK);
71 }
72
73 /*
74  * error_noslot pfns indicate that the gfn can not be
75  * translated to pfn - it is not in slot or failed to
76  * translate it to pfn.
77  */
78 static inline bool is_error_noslot_pfn(pfn_t pfn)
79 {
80         return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
81 }
82
83 /* noslot pfn indicates that the gfn is not in slot. */
84 static inline bool is_noslot_pfn(pfn_t pfn)
85 {
86         return pfn == KVM_PFN_NOSLOT;
87 }
88
89 /*
90  * architectures with KVM_HVA_ERR_BAD other than PAGE_OFFSET (e.g. s390)
91  * provide own defines and kvm_is_error_hva
92  */
93 #ifndef KVM_HVA_ERR_BAD
94
95 #define KVM_HVA_ERR_BAD         (PAGE_OFFSET)
96 #define KVM_HVA_ERR_RO_BAD      (PAGE_OFFSET + PAGE_SIZE)
97
98 static inline bool kvm_is_error_hva(unsigned long addr)
99 {
100         return addr >= PAGE_OFFSET;
101 }
102
103 #endif
104
105 #define KVM_ERR_PTR_BAD_PAGE    (ERR_PTR(-ENOENT))
106
107 static inline bool is_error_page(struct page *page)
108 {
109         return IS_ERR(page);
110 }
111
112 /*
113  * vcpu->requests bit members
114  */
115 #define KVM_REQ_TLB_FLUSH          0
116 #define KVM_REQ_MIGRATE_TIMER      1
117 #define KVM_REQ_REPORT_TPR_ACCESS  2
118 #define KVM_REQ_MMU_RELOAD         3
119 #define KVM_REQ_TRIPLE_FAULT       4
120 #define KVM_REQ_PENDING_TIMER      5
121 #define KVM_REQ_UNHALT             6
122 #define KVM_REQ_MMU_SYNC           7
123 #define KVM_REQ_CLOCK_UPDATE       8
124 #define KVM_REQ_KICK               9
125 #define KVM_REQ_DEACTIVATE_FPU    10
126 #define KVM_REQ_EVENT             11
127 #define KVM_REQ_APF_HALT          12
128 #define KVM_REQ_STEAL_UPDATE      13
129 #define KVM_REQ_NMI               14
130 #define KVM_REQ_PMU               15
131 #define KVM_REQ_PMI               16
132 #define KVM_REQ_WATCHDOG          17
133 #define KVM_REQ_MASTERCLOCK_UPDATE 18
134 #define KVM_REQ_MCLOCK_INPROGRESS 19
135 #define KVM_REQ_EPR_EXIT          20
136 #define KVM_REQ_SCAN_IOAPIC       21
137 #define KVM_REQ_GLOBAL_CLOCK_UPDATE 22
138 #define KVM_REQ_ENABLE_IBS        23
139 #define KVM_REQ_DISABLE_IBS       24
140 #define KVM_REQ_APIC_PAGE_RELOAD  25
141 #define KVM_REQ_SMI               26
142 #define KVM_REQ_HV_CRASH          27
143 #define KVM_REQ_IOAPIC_EOI_EXIT   28
144
145 #define KVM_USERSPACE_IRQ_SOURCE_ID             0
146 #define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID        1
147
148 extern struct kmem_cache *kvm_vcpu_cache;
149
150 extern spinlock_t kvm_lock;
151 extern struct list_head vm_list;
152
153 struct kvm_io_range {
154         gpa_t addr;
155         int len;
156         struct kvm_io_device *dev;
157 };
158
159 #define NR_IOBUS_DEVS 1000
160
161 struct kvm_io_bus {
162         int dev_count;
163         int ioeventfd_count;
164         struct kvm_io_range range[];
165 };
166
167 enum kvm_bus {
168         KVM_MMIO_BUS,
169         KVM_PIO_BUS,
170         KVM_VIRTIO_CCW_NOTIFY_BUS,
171         KVM_FAST_MMIO_BUS,
172         KVM_NR_BUSES
173 };
174
175 int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
176                      int len, const void *val);
177 int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
178                             gpa_t addr, int len, const void *val, long cookie);
179 int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
180                     int len, void *val);
181 int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
182                             int len, struct kvm_io_device *dev);
183 int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
184                               struct kvm_io_device *dev);
185
186 #ifdef CONFIG_KVM_ASYNC_PF
187 struct kvm_async_pf {
188         struct work_struct work;
189         struct list_head link;
190         struct list_head queue;
191         struct kvm_vcpu *vcpu;
192         struct mm_struct *mm;
193         gva_t gva;
194         unsigned long addr;
195         struct kvm_arch_async_pf arch;
196         bool   wakeup_all;
197 };
198
199 void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
200 void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
201 int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, unsigned long hva,
202                        struct kvm_arch_async_pf *arch);
203 int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
204 #endif
205
206 enum {
207         OUTSIDE_GUEST_MODE,
208         IN_GUEST_MODE,
209         EXITING_GUEST_MODE,
210         READING_SHADOW_PAGE_TABLES,
211 };
212
213 /*
214  * Sometimes a large or cross-page mmio needs to be broken up into separate
215  * exits for userspace servicing.
216  */
217 struct kvm_mmio_fragment {
218         gpa_t gpa;
219         void *data;
220         unsigned len;
221 };
222
223 struct kvm_vcpu {
224         struct kvm *kvm;
225 #ifdef CONFIG_PREEMPT_NOTIFIERS
226         struct preempt_notifier preempt_notifier;
227 #endif
228         int cpu;
229         int vcpu_id;
230         int srcu_idx;
231         int mode;
232         unsigned long requests;
233         unsigned long guest_debug;
234
235         struct mutex mutex;
236         struct kvm_run *run;
237
238         int fpu_active;
239         int guest_fpu_loaded, guest_xcr0_loaded;
240         unsigned char fpu_counter;
241         wait_queue_head_t wq;
242         struct pid *pid;
243         int sigset_active;
244         sigset_t sigset;
245         struct kvm_vcpu_stat stat;
246         unsigned int halt_poll_ns;
247
248 #ifdef CONFIG_HAS_IOMEM
249         int mmio_needed;
250         int mmio_read_completed;
251         int mmio_is_write;
252         int mmio_cur_fragment;
253         int mmio_nr_fragments;
254         struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
255 #endif
256
257 #ifdef CONFIG_KVM_ASYNC_PF
258         struct {
259                 u32 queued;
260                 struct list_head queue;
261                 struct list_head done;
262                 spinlock_t lock;
263         } async_pf;
264 #endif
265
266 #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
267         /*
268          * Cpu relax intercept or pause loop exit optimization
269          * in_spin_loop: set when a vcpu does a pause loop exit
270          *  or cpu relax intercepted.
271          * dy_eligible: indicates whether vcpu is eligible for directed yield.
272          */
273         struct {
274                 bool in_spin_loop;
275                 bool dy_eligible;
276         } spin_loop;
277 #endif
278         bool preempted;
279         struct kvm_vcpu_arch arch;
280 };
281
282 static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
283 {
284         return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
285 }
286
287 /*
288  * Some of the bitops functions do not support too long bitmaps.
289  * This number must be determined not to exceed such limits.
290  */
291 #define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
292
293 struct kvm_memory_slot {
294         gfn_t base_gfn;
295         unsigned long npages;
296         unsigned long *dirty_bitmap;
297         struct kvm_arch_memory_slot arch;
298         unsigned long userspace_addr;
299         u32 flags;
300         short id;
301 };
302
303 static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
304 {
305         return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
306 }
307
308 struct kvm_s390_adapter_int {
309         u64 ind_addr;
310         u64 summary_addr;
311         u64 ind_offset;
312         u32 summary_offset;
313         u32 adapter_id;
314 };
315
316 struct kvm_kernel_irq_routing_entry {
317         u32 gsi;
318         u32 type;
319         int (*set)(struct kvm_kernel_irq_routing_entry *e,
320                    struct kvm *kvm, int irq_source_id, int level,
321                    bool line_status);
322         union {
323                 struct {
324                         unsigned irqchip;
325                         unsigned pin;
326                 } irqchip;
327                 struct msi_msg msi;
328                 struct kvm_s390_adapter_int adapter;
329         };
330         struct hlist_node link;
331 };
332
333 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
334 struct kvm_irq_routing_table {
335         int chip[KVM_NR_IRQCHIPS][KVM_IRQCHIP_NUM_PINS];
336         u32 nr_rt_entries;
337         /*
338          * Array indexed by gsi. Each entry contains list of irq chips
339          * the gsi is connected to.
340          */
341         struct hlist_head map[0];
342 };
343 #endif
344
345 #ifndef KVM_PRIVATE_MEM_SLOTS
346 #define KVM_PRIVATE_MEM_SLOTS 0
347 #endif
348
349 #ifndef KVM_MEM_SLOTS_NUM
350 #define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS)
351 #endif
352
353 #ifndef __KVM_VCPU_MULTIPLE_ADDRESS_SPACE
354 static inline int kvm_arch_vcpu_memslots_id(struct kvm_vcpu *vcpu)
355 {
356         return 0;
357 }
358 #endif
359
360 /*
361  * Note:
362  * memslots are not sorted by id anymore, please use id_to_memslot()
363  * to get the memslot by its id.
364  */
365 struct kvm_memslots {
366         u64 generation;
367         struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
368         /* The mapping table from slot id to the index in memslots[]. */
369         short id_to_index[KVM_MEM_SLOTS_NUM];
370         atomic_t lru_slot;
371         int used_slots;
372 };
373
374 struct kvm {
375         spinlock_t mmu_lock;
376         struct mutex slots_lock;
377         struct mm_struct *mm; /* userspace tied to this vm */
378         struct kvm_memslots *memslots[KVM_ADDRESS_SPACE_NUM];
379         struct srcu_struct srcu;
380         struct srcu_struct irq_srcu;
381         struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
382         atomic_t online_vcpus;
383         int last_boosted_vcpu;
384         struct list_head vm_list;
385         struct mutex lock;
386         struct kvm_io_bus *buses[KVM_NR_BUSES];
387 #ifdef CONFIG_HAVE_KVM_EVENTFD
388         struct {
389                 spinlock_t        lock;
390                 struct list_head  items;
391                 struct list_head  resampler_list;
392                 struct mutex      resampler_lock;
393         } irqfds;
394         struct list_head ioeventfds;
395 #endif
396         struct kvm_vm_stat stat;
397         struct kvm_arch arch;
398         atomic_t users_count;
399 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
400         struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
401         spinlock_t ring_lock;
402         struct list_head coalesced_zones;
403 #endif
404
405         struct mutex irq_lock;
406 #ifdef CONFIG_HAVE_KVM_IRQCHIP
407         /*
408          * Update side is protected by irq_lock.
409          */
410         struct kvm_irq_routing_table __rcu *irq_routing;
411 #endif
412 #ifdef CONFIG_HAVE_KVM_IRQFD
413         struct hlist_head irq_ack_notifier_list;
414 #endif
415
416 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
417         struct mmu_notifier mmu_notifier;
418         unsigned long mmu_notifier_seq;
419         long mmu_notifier_count;
420 #endif
421         long tlbs_dirty;
422         struct list_head devices;
423 };
424
425 #define kvm_err(fmt, ...) \
426         pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
427 #define kvm_info(fmt, ...) \
428         pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
429 #define kvm_debug(fmt, ...) \
430         pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
431 #define kvm_pr_unimpl(fmt, ...) \
432         pr_err_ratelimited("kvm [%i]: " fmt, \
433                            task_tgid_nr(current), ## __VA_ARGS__)
434
435 /* The guest did something we don't support. */
436 #define vcpu_unimpl(vcpu, fmt, ...)                                     \
437         kvm_pr_unimpl("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
438
439 #define vcpu_debug(vcpu, fmt, ...)                                      \
440         kvm_debug("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
441
442 static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
443 {
444         /* Pairs with smp_wmb() in kvm_vm_ioctl_create_vcpu, in case
445          * the caller has read kvm->online_vcpus before (as is the case
446          * for kvm_for_each_vcpu, for example).
447          */
448         smp_rmb();
449         return kvm->vcpus[i];
450 }
451
452 #define kvm_for_each_vcpu(idx, vcpup, kvm) \
453         for (idx = 0; \
454              idx < atomic_read(&kvm->online_vcpus) && \
455              (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
456              idx++)
457
458 #define kvm_for_each_memslot(memslot, slots)    \
459         for (memslot = &slots->memslots[0];     \
460               memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
461                 memslot++)
462
463 int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
464 void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
465
466 int __must_check vcpu_load(struct kvm_vcpu *vcpu);
467 void vcpu_put(struct kvm_vcpu *vcpu);
468
469 #ifdef __KVM_HAVE_IOAPIC
470 void kvm_vcpu_request_scan_ioapic(struct kvm *kvm);
471 void kvm_arch_irq_routing_update(struct kvm *kvm);
472 #else
473 static inline void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
474 {
475 }
476 static inline void kvm_arch_irq_routing_update(struct kvm *kvm)
477 {
478 }
479 #endif
480
481 #ifdef CONFIG_HAVE_KVM_IRQFD
482 int kvm_irqfd_init(void);
483 void kvm_irqfd_exit(void);
484 #else
485 static inline int kvm_irqfd_init(void)
486 {
487         return 0;
488 }
489
490 static inline void kvm_irqfd_exit(void)
491 {
492 }
493 #endif
494 int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
495                   struct module *module);
496 void kvm_exit(void);
497
498 void kvm_get_kvm(struct kvm *kvm);
499 void kvm_put_kvm(struct kvm *kvm);
500
501 static inline struct kvm_memslots *__kvm_memslots(struct kvm *kvm, int as_id)
502 {
503         return rcu_dereference_check(kvm->memslots[as_id],
504                         srcu_read_lock_held(&kvm->srcu)
505                         || lockdep_is_held(&kvm->slots_lock));
506 }
507
508 static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
509 {
510         return __kvm_memslots(kvm, 0);
511 }
512
513 static inline struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu)
514 {
515         int as_id = kvm_arch_vcpu_memslots_id(vcpu);
516
517         return __kvm_memslots(vcpu->kvm, as_id);
518 }
519
520 static inline struct kvm_memory_slot *
521 id_to_memslot(struct kvm_memslots *slots, int id)
522 {
523         int index = slots->id_to_index[id];
524         struct kvm_memory_slot *slot;
525
526         slot = &slots->memslots[index];
527
528         WARN_ON(slot->id != id);
529         return slot;
530 }
531
532 /*
533  * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
534  * - create a new memory slot
535  * - delete an existing memory slot
536  * - modify an existing memory slot
537  *   -- move it in the guest physical memory space
538  *   -- just change its flags
539  *
540  * Since flags can be changed by some of these operations, the following
541  * differentiation is the best we can do for __kvm_set_memory_region():
542  */
543 enum kvm_mr_change {
544         KVM_MR_CREATE,
545         KVM_MR_DELETE,
546         KVM_MR_MOVE,
547         KVM_MR_FLAGS_ONLY,
548 };
549
550 int kvm_set_memory_region(struct kvm *kvm,
551                           const struct kvm_userspace_memory_region *mem);
552 int __kvm_set_memory_region(struct kvm *kvm,
553                             const struct kvm_userspace_memory_region *mem);
554 void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
555                            struct kvm_memory_slot *dont);
556 int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
557                             unsigned long npages);
558 void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots);
559 int kvm_arch_prepare_memory_region(struct kvm *kvm,
560                                 struct kvm_memory_slot *memslot,
561                                 const struct kvm_userspace_memory_region *mem,
562                                 enum kvm_mr_change change);
563 void kvm_arch_commit_memory_region(struct kvm *kvm,
564                                 const struct kvm_userspace_memory_region *mem,
565                                 const struct kvm_memory_slot *old,
566                                 const struct kvm_memory_slot *new,
567                                 enum kvm_mr_change change);
568 bool kvm_largepages_enabled(void);
569 void kvm_disable_largepages(void);
570 /* flush all memory translations */
571 void kvm_arch_flush_shadow_all(struct kvm *kvm);
572 /* flush memory translations pointing to 'slot' */
573 void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
574                                    struct kvm_memory_slot *slot);
575
576 int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
577                             struct page **pages, int nr_pages);
578
579 struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
580 unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
581 unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable);
582 unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
583 unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot, gfn_t gfn,
584                                       bool *writable);
585 void kvm_release_page_clean(struct page *page);
586 void kvm_release_page_dirty(struct page *page);
587 void kvm_set_page_accessed(struct page *page);
588
589 pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
590 pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
591 pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
592                       bool *writable);
593 pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
594 pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn);
595 pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
596                            bool *async, bool write_fault, bool *writable);
597
598 void kvm_release_pfn_clean(pfn_t pfn);
599 void kvm_set_pfn_dirty(pfn_t pfn);
600 void kvm_set_pfn_accessed(pfn_t pfn);
601 void kvm_get_pfn(pfn_t pfn);
602
603 int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
604                         int len);
605 int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
606                           unsigned long len);
607 int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
608 int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
609                            void *data, unsigned long len);
610 int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
611                          int offset, int len);
612 int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
613                     unsigned long len);
614 int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
615                            void *data, unsigned long len);
616 int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
617                               gpa_t gpa, unsigned long len);
618 int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
619 int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
620 struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
621 int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
622 unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn);
623 void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
624
625 struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu);
626 struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn);
627 pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn);
628 pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn);
629 struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn);
630 unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn);
631 unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable);
632 int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data, int offset,
633                              int len);
634 int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
635                                unsigned long len);
636 int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
637                         unsigned long len);
638 int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, const void *data,
639                               int offset, int len);
640 int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
641                          unsigned long len);
642 void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn);
643
644 void kvm_vcpu_block(struct kvm_vcpu *vcpu);
645 void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
646 int kvm_vcpu_yield_to(struct kvm_vcpu *target);
647 void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
648 void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
649 void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
650
651 void kvm_flush_remote_tlbs(struct kvm *kvm);
652 void kvm_reload_remote_mmus(struct kvm *kvm);
653 void kvm_make_mclock_inprogress_request(struct kvm *kvm);
654 void kvm_make_scan_ioapic_request(struct kvm *kvm);
655 bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req);
656
657 long kvm_arch_dev_ioctl(struct file *filp,
658                         unsigned int ioctl, unsigned long arg);
659 long kvm_arch_vcpu_ioctl(struct file *filp,
660                          unsigned int ioctl, unsigned long arg);
661 int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
662
663 int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext);
664
665 int kvm_get_dirty_log(struct kvm *kvm,
666                         struct kvm_dirty_log *log, int *is_dirty);
667
668 int kvm_get_dirty_log_protect(struct kvm *kvm,
669                         struct kvm_dirty_log *log, bool *is_dirty);
670
671 void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
672                                         struct kvm_memory_slot *slot,
673                                         gfn_t gfn_offset,
674                                         unsigned long mask);
675
676 int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
677                                 struct kvm_dirty_log *log);
678
679 int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
680                         bool line_status);
681 long kvm_arch_vm_ioctl(struct file *filp,
682                        unsigned int ioctl, unsigned long arg);
683
684 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
685 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
686
687 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
688                                     struct kvm_translation *tr);
689
690 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
691 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
692 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
693                                   struct kvm_sregs *sregs);
694 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
695                                   struct kvm_sregs *sregs);
696 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
697                                     struct kvm_mp_state *mp_state);
698 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
699                                     struct kvm_mp_state *mp_state);
700 int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
701                                         struct kvm_guest_debug *dbg);
702 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
703
704 int kvm_arch_init(void *opaque);
705 void kvm_arch_exit(void);
706
707 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
708 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
709
710 void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu);
711
712 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
713 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
714 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
715 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
716 int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
717 void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu);
718 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
719
720 int kvm_arch_hardware_enable(void);
721 void kvm_arch_hardware_disable(void);
722 int kvm_arch_hardware_setup(void);
723 void kvm_arch_hardware_unsetup(void);
724 void kvm_arch_check_processor_compat(void *rtn);
725 int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
726 int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
727
728 void *kvm_kvzalloc(unsigned long size);
729
730 #ifndef __KVM_HAVE_ARCH_VM_ALLOC
731 static inline struct kvm *kvm_arch_alloc_vm(void)
732 {
733         return kzalloc(sizeof(struct kvm), GFP_KERNEL);
734 }
735
736 static inline void kvm_arch_free_vm(struct kvm *kvm)
737 {
738         kfree(kvm);
739 }
740 #endif
741
742 #ifdef __KVM_HAVE_ARCH_NONCOHERENT_DMA
743 void kvm_arch_register_noncoherent_dma(struct kvm *kvm);
744 void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm);
745 bool kvm_arch_has_noncoherent_dma(struct kvm *kvm);
746 #else
747 static inline void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
748 {
749 }
750
751 static inline void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
752 {
753 }
754
755 static inline bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
756 {
757         return false;
758 }
759 #endif
760 #ifdef __KVM_HAVE_ARCH_ASSIGNED_DEVICE
761 void kvm_arch_start_assignment(struct kvm *kvm);
762 void kvm_arch_end_assignment(struct kvm *kvm);
763 bool kvm_arch_has_assigned_device(struct kvm *kvm);
764 #else
765 static inline void kvm_arch_start_assignment(struct kvm *kvm)
766 {
767 }
768
769 static inline void kvm_arch_end_assignment(struct kvm *kvm)
770 {
771 }
772
773 static inline bool kvm_arch_has_assigned_device(struct kvm *kvm)
774 {
775         return false;
776 }
777 #endif
778
779 static inline wait_queue_head_t *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
780 {
781 #ifdef __KVM_HAVE_ARCH_WQP
782         return vcpu->arch.wqp;
783 #else
784         return &vcpu->wq;
785 #endif
786 }
787
788 #ifdef __KVM_HAVE_ARCH_INTC_INITIALIZED
789 /*
790  * returns true if the virtual interrupt controller is initialized and
791  * ready to accept virtual IRQ. On some architectures the virtual interrupt
792  * controller is dynamically instantiated and this is not always true.
793  */
794 bool kvm_arch_intc_initialized(struct kvm *kvm);
795 #else
796 static inline bool kvm_arch_intc_initialized(struct kvm *kvm)
797 {
798         return true;
799 }
800 #endif
801
802 int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
803 void kvm_arch_destroy_vm(struct kvm *kvm);
804 void kvm_arch_sync_events(struct kvm *kvm);
805
806 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
807 void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
808
809 bool kvm_is_reserved_pfn(pfn_t pfn);
810
811 struct kvm_irq_ack_notifier {
812         struct hlist_node link;
813         unsigned gsi;
814         void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
815 };
816
817 int kvm_irq_map_gsi(struct kvm *kvm,
818                     struct kvm_kernel_irq_routing_entry *entries, int gsi);
819 int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin);
820
821 int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
822                 bool line_status);
823 int kvm_set_irq_inatomic(struct kvm *kvm, int irq_source_id, u32 irq, int level);
824 int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
825                 int irq_source_id, int level, bool line_status);
826 bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin);
827 void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
828 void kvm_register_irq_ack_notifier(struct kvm *kvm,
829                                    struct kvm_irq_ack_notifier *kian);
830 void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
831                                    struct kvm_irq_ack_notifier *kian);
832 int kvm_request_irq_source_id(struct kvm *kvm);
833 void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
834
835 #ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
836 int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
837 void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
838 #else
839 static inline int kvm_iommu_map_pages(struct kvm *kvm,
840                                       struct kvm_memory_slot *slot)
841 {
842         return 0;
843 }
844
845 static inline void kvm_iommu_unmap_pages(struct kvm *kvm,
846                                          struct kvm_memory_slot *slot)
847 {
848 }
849 #endif
850
851 /* must be called with irqs disabled */
852 static inline void __kvm_guest_enter(void)
853 {
854         guest_enter();
855         /* KVM does not hold any references to rcu protected data when it
856          * switches CPU into a guest mode. In fact switching to a guest mode
857          * is very similar to exiting to userspace from rcu point of view. In
858          * addition CPU may stay in a guest mode for quite a long time (up to
859          * one time slice). Lets treat guest mode as quiescent state, just like
860          * we do with user-mode execution.
861          */
862         if (!context_tracking_cpu_is_enabled())
863                 rcu_virt_note_context_switch(smp_processor_id());
864 }
865
866 /* must be called with irqs disabled */
867 static inline void __kvm_guest_exit(void)
868 {
869         guest_exit();
870 }
871
872 static inline void kvm_guest_enter(void)
873 {
874         unsigned long flags;
875
876         local_irq_save(flags);
877         __kvm_guest_enter();
878         local_irq_restore(flags);
879 }
880
881 static inline void kvm_guest_exit(void)
882 {
883         unsigned long flags;
884
885         local_irq_save(flags);
886         __kvm_guest_exit();
887         local_irq_restore(flags);
888 }
889
890 /*
891  * search_memslots() and __gfn_to_memslot() are here because they are
892  * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
893  * gfn_to_memslot() itself isn't here as an inline because that would
894  * bloat other code too much.
895  */
896 static inline struct kvm_memory_slot *
897 search_memslots(struct kvm_memslots *slots, gfn_t gfn)
898 {
899         int start = 0, end = slots->used_slots;
900         int slot = atomic_read(&slots->lru_slot);
901         struct kvm_memory_slot *memslots = slots->memslots;
902
903         if (gfn >= memslots[slot].base_gfn &&
904             gfn < memslots[slot].base_gfn + memslots[slot].npages)
905                 return &memslots[slot];
906
907         while (start < end) {
908                 slot = start + (end - start) / 2;
909
910                 if (gfn >= memslots[slot].base_gfn)
911                         end = slot;
912                 else
913                         start = slot + 1;
914         }
915
916         if (gfn >= memslots[start].base_gfn &&
917             gfn < memslots[start].base_gfn + memslots[start].npages) {
918                 atomic_set(&slots->lru_slot, start);
919                 return &memslots[start];
920         }
921
922         return NULL;
923 }
924
925 static inline struct kvm_memory_slot *
926 __gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
927 {
928         return search_memslots(slots, gfn);
929 }
930
931 static inline unsigned long
932 __gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
933 {
934         return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
935 }
936
937 static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
938 {
939         return gfn_to_memslot(kvm, gfn)->id;
940 }
941
942 static inline gfn_t
943 hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
944 {
945         gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
946
947         return slot->base_gfn + gfn_offset;
948 }
949
950 static inline gpa_t gfn_to_gpa(gfn_t gfn)
951 {
952         return (gpa_t)gfn << PAGE_SHIFT;
953 }
954
955 static inline gfn_t gpa_to_gfn(gpa_t gpa)
956 {
957         return (gfn_t)(gpa >> PAGE_SHIFT);
958 }
959
960 static inline hpa_t pfn_to_hpa(pfn_t pfn)
961 {
962         return (hpa_t)pfn << PAGE_SHIFT;
963 }
964
965 static inline bool kvm_is_error_gpa(struct kvm *kvm, gpa_t gpa)
966 {
967         unsigned long hva = gfn_to_hva(kvm, gpa_to_gfn(gpa));
968
969         return kvm_is_error_hva(hva);
970 }
971
972 static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
973 {
974         set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
975 }
976
977 enum kvm_stat_kind {
978         KVM_STAT_VM,
979         KVM_STAT_VCPU,
980 };
981
982 struct kvm_stats_debugfs_item {
983         const char *name;
984         int offset;
985         enum kvm_stat_kind kind;
986         struct dentry *dentry;
987 };
988 extern struct kvm_stats_debugfs_item debugfs_entries[];
989 extern struct dentry *kvm_debugfs_dir;
990
991 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
992 static inline int mmu_notifier_retry(struct kvm *kvm, unsigned long mmu_seq)
993 {
994         if (unlikely(kvm->mmu_notifier_count))
995                 return 1;
996         /*
997          * Ensure the read of mmu_notifier_count happens before the read
998          * of mmu_notifier_seq.  This interacts with the smp_wmb() in
999          * mmu_notifier_invalidate_range_end to make sure that the caller
1000          * either sees the old (non-zero) value of mmu_notifier_count or
1001          * the new (incremented) value of mmu_notifier_seq.
1002          * PowerPC Book3s HV KVM calls this under a per-page lock
1003          * rather than under kvm->mmu_lock, for scalability, so
1004          * can't rely on kvm->mmu_lock to keep things ordered.
1005          */
1006         smp_rmb();
1007         if (kvm->mmu_notifier_seq != mmu_seq)
1008                 return 1;
1009         return 0;
1010 }
1011 #endif
1012
1013 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
1014
1015 #ifdef CONFIG_S390
1016 #define KVM_MAX_IRQ_ROUTES 4096 //FIXME: we can have more than that...
1017 #else
1018 #define KVM_MAX_IRQ_ROUTES 1024
1019 #endif
1020
1021 int kvm_setup_default_irq_routing(struct kvm *kvm);
1022 int kvm_setup_empty_irq_routing(struct kvm *kvm);
1023 int kvm_set_irq_routing(struct kvm *kvm,
1024                         const struct kvm_irq_routing_entry *entries,
1025                         unsigned nr,
1026                         unsigned flags);
1027 int kvm_set_routing_entry(struct kvm_kernel_irq_routing_entry *e,
1028                           const struct kvm_irq_routing_entry *ue);
1029 void kvm_free_irq_routing(struct kvm *kvm);
1030
1031 #else
1032
1033 static inline void kvm_free_irq_routing(struct kvm *kvm) {}
1034
1035 #endif
1036
1037 int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
1038
1039 #ifdef CONFIG_HAVE_KVM_EVENTFD
1040
1041 void kvm_eventfd_init(struct kvm *kvm);
1042 int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
1043
1044 #ifdef CONFIG_HAVE_KVM_IRQFD
1045 int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
1046 void kvm_irqfd_release(struct kvm *kvm);
1047 void kvm_irq_routing_update(struct kvm *);
1048 #else
1049 static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
1050 {
1051         return -EINVAL;
1052 }
1053
1054 static inline void kvm_irqfd_release(struct kvm *kvm) {}
1055 #endif
1056
1057 #else
1058
1059 static inline void kvm_eventfd_init(struct kvm *kvm) {}
1060
1061 static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
1062 {
1063         return -EINVAL;
1064 }
1065
1066 static inline void kvm_irqfd_release(struct kvm *kvm) {}
1067
1068 #ifdef CONFIG_HAVE_KVM_IRQCHIP
1069 static inline void kvm_irq_routing_update(struct kvm *kvm)
1070 {
1071 }
1072 #endif
1073
1074 static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
1075 {
1076         return -ENOSYS;
1077 }
1078
1079 #endif /* CONFIG_HAVE_KVM_EVENTFD */
1080
1081 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
1082 bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu);
1083 #else
1084 static inline bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) { return true; }
1085 #endif
1086
1087 static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
1088 {
1089         set_bit(req, &vcpu->requests);
1090 }
1091
1092 static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
1093 {
1094         if (test_bit(req, &vcpu->requests)) {
1095                 clear_bit(req, &vcpu->requests);
1096                 return true;
1097         } else {
1098                 return false;
1099         }
1100 }
1101
1102 extern bool kvm_rebooting;
1103
1104 struct kvm_device {
1105         struct kvm_device_ops *ops;
1106         struct kvm *kvm;
1107         void *private;
1108         struct list_head vm_node;
1109 };
1110
1111 /* create, destroy, and name are mandatory */
1112 struct kvm_device_ops {
1113         const char *name;
1114         int (*create)(struct kvm_device *dev, u32 type);
1115
1116         /*
1117          * Destroy is responsible for freeing dev.
1118          *
1119          * Destroy may be called before or after destructors are called
1120          * on emulated I/O regions, depending on whether a reference is
1121          * held by a vcpu or other kvm component that gets destroyed
1122          * after the emulated I/O.
1123          */
1124         void (*destroy)(struct kvm_device *dev);
1125
1126         int (*set_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1127         int (*get_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1128         int (*has_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1129         long (*ioctl)(struct kvm_device *dev, unsigned int ioctl,
1130                       unsigned long arg);
1131 };
1132
1133 void kvm_device_get(struct kvm_device *dev);
1134 void kvm_device_put(struct kvm_device *dev);
1135 struct kvm_device *kvm_device_from_filp(struct file *filp);
1136 int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type);
1137 void kvm_unregister_device_ops(u32 type);
1138
1139 extern struct kvm_device_ops kvm_mpic_ops;
1140 extern struct kvm_device_ops kvm_xics_ops;
1141 extern struct kvm_device_ops kvm_arm_vgic_v2_ops;
1142 extern struct kvm_device_ops kvm_arm_vgic_v3_ops;
1143
1144 #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1145
1146 static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1147 {
1148         vcpu->spin_loop.in_spin_loop = val;
1149 }
1150 static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1151 {
1152         vcpu->spin_loop.dy_eligible = val;
1153 }
1154
1155 #else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1156
1157 static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1158 {
1159 }
1160
1161 static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1162 {
1163 }
1164 #endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1165 #endif