Merge tag 'xfs-6.4-rc1-fixes' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
[linux-block.git] / include / linux / kvm_types.h
CommitLineData
cd93f165 1/* SPDX-License-Identifier: GPL-2.0-only */
d77a39d9
HB
2
3#ifndef __KVM_TYPES_H__
4#define __KVM_TYPES_H__
5
65647300
PB
6struct kvm;
7struct kvm_async_pf;
8struct kvm_device_ops;
9struct kvm_interrupt;
10struct kvm_irq_routing_table;
11struct kvm_memory_slot;
12struct kvm_one_reg;
13struct kvm_run;
14struct kvm_userspace_memory_region;
15struct kvm_vcpu;
16struct kvm_vcpu_init;
15f46015 17struct kvm_memslots;
65647300
PB
18
19enum kvm_mr_change;
20
d0d96121 21#include <linux/bits.h>
93984f19 22#include <linux/mutex.h>
91724814 23#include <linux/types.h>
982ed0de 24#include <linux/spinlock_types.h>
d77a39d9 25
2aa9c199
SC
26#include <asm/kvm_types.h>
27
d77a39d9
HB
28/*
29 * Address types:
30 *
31 * gva - guest virtual address
32 * gpa - guest physical address
33 * gfn - guest frame number
34 * hva - host virtual address
35 * hpa - host physical address
36 * hfn - host frame number
37 */
38
39typedef unsigned long gva_t;
40typedef u64 gpa_t;
5689cc53 41typedef u64 gfn_t;
d77a39d9 42
cecafc0a 43#define INVALID_GPA (~(gpa_t)0)
8564d637 44
d77a39d9
HB
45typedef unsigned long hva_t;
46typedef u64 hpa_t;
5689cc53 47typedef u64 hfn_t;
d77a39d9 48
ba049e93 49typedef hfn_t kvm_pfn_t;
35149e21 50
d0d96121
SC
51enum pfn_cache_usage {
52 KVM_GUEST_USES_PFN = BIT(0),
53 KVM_HOST_USES_PFN = BIT(1),
54 KVM_GUEST_AND_HOST_USE_PFN = KVM_GUEST_USES_PFN | KVM_HOST_USES_PFN,
55};
56
49c7754c
GN
57struct gfn_to_hva_cache {
58 u64 generation;
59 gpa_t gpa;
60 unsigned long hva;
8f964525 61 unsigned long len;
49c7754c
GN
62 struct kvm_memory_slot *memslot;
63};
64
982ed0de
DW
65struct gfn_to_pfn_cache {
66 u64 generation;
67 gpa_t gpa;
68 unsigned long uhva;
69 struct kvm_memory_slot *memslot;
8c82a0b3 70 struct kvm *kvm;
982ed0de
DW
71 struct kvm_vcpu *vcpu;
72 struct list_head list;
73 rwlock_t lock;
93984f19 74 struct mutex refresh_lock;
982ed0de
DW
75 void *khva;
76 kvm_pfn_t pfn;
d0d96121 77 enum pfn_cache_usage usage;
982ed0de
DW
78 bool active;
79 bool valid;
982ed0de
DW
80};
81
2aa9c199
SC
82#ifdef KVM_ARCH_NR_OBJS_PER_MEMORY_CACHE
83/*
84 * Memory caches are used to preallocate memory ahead of various MMU flows,
85 * e.g. page fault handlers. Gracefully handling allocation failures deep in
86 * MMU flows is problematic, as is triggering reclaim, I/O, etc... while
87 * holding MMU locks. Note, these caches act more like prefetch buffers than
88 * classical caches, i.e. objects are not returned to the cache on being freed.
837f66c7
DM
89 *
90 * The @capacity field and @objects array are lazily initialized when the cache
91 * is topped up (__kvm_mmu_topup_memory_cache()).
2aa9c199
SC
92 */
93struct kvm_mmu_memory_cache {
2aa9c199 94 gfp_t gfp_zero;
4ab0e470 95 gfp_t gfp_custom;
2aa9c199 96 struct kmem_cache *kmem_cache;
837f66c7 97 int capacity;
f530b531 98 int nobjs;
837f66c7 99 void **objects;
2aa9c199
SC
100};
101#endif
102
8ccba534
JZ
103#define HALT_POLL_HIST_COUNT 32
104
0193cc90
JZ
105struct kvm_vm_stat_generic {
106 u64 remote_tlb_flush;
3cc4e148 107 u64 remote_tlb_flush_requests;
0193cc90
JZ
108};
109
110struct kvm_vcpu_stat_generic {
111 u64 halt_successful_poll;
112 u64 halt_attempted_poll;
113 u64 halt_poll_invalid;
114 u64 halt_wakeup;
115 u64 halt_poll_success_ns;
116 u64 halt_poll_fail_ns;
87bcc5fa 117 u64 halt_wait_ns;
8ccba534
JZ
118 u64 halt_poll_success_hist[HALT_POLL_HIST_COUNT];
119 u64 halt_poll_fail_hist[HALT_POLL_HIST_COUNT];
120 u64 halt_wait_hist[HALT_POLL_HIST_COUNT];
c3858335 121 u64 blocking;
0193cc90 122};
2aa9c199 123
cb082bfa
JZ
124#define KVM_STATS_NAME_SIZE 48
125
d77a39d9 126#endif /* __KVM_TYPES_H__ */