1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __KVM_TYPES_H__
4 #define __KVM_TYPES_H__
10 struct kvm_irq_routing_table;
11 struct kvm_memory_slot;
14 struct kvm_userspace_memory_region;
21 #include <linux/types.h>
23 #include <asm/kvm_types.h>
28 * gva - guest virtual address
29 * gpa - guest physical address
30 * gfn - guest frame number
31 * hva - host virtual address
32 * hpa - host physical address
33 * hfn - host frame number
36 typedef unsigned long gva_t;
40 #define GPA_INVALID (~(gpa_t)0)
42 typedef unsigned long hva_t;
46 typedef hfn_t kvm_pfn_t;
48 struct gfn_to_hva_cache {
53 struct kvm_memory_slot *memslot;
56 #ifdef KVM_ARCH_NR_OBJS_PER_MEMORY_CACHE
58 * Memory caches are used to preallocate memory ahead of various MMU flows,
59 * e.g. page fault handlers. Gracefully handling allocation failures deep in
60 * MMU flows is problematic, as is triggering reclaim, I/O, etc... while
61 * holding MMU locks. Note, these caches act more like prefetch buffers than
62 * classical caches, i.e. objects are not returned to the cache on being freed.
64 struct kvm_mmu_memory_cache {
67 struct kmem_cache *kmem_cache;
68 void *objects[KVM_ARCH_NR_OBJS_PER_MEMORY_CACHE];
72 #define HALT_POLL_HIST_COUNT 32
74 struct kvm_vm_stat_generic {
76 u64 remote_tlb_flush_requests;
79 struct kvm_vcpu_stat_generic {
80 u64 halt_successful_poll;
81 u64 halt_attempted_poll;
82 u64 halt_poll_invalid;
84 u64 halt_poll_success_ns;
85 u64 halt_poll_fail_ns;
87 u64 halt_poll_success_hist[HALT_POLL_HIST_COUNT];
88 u64 halt_poll_fail_hist[HALT_POLL_HIST_COUNT];
89 u64 halt_wait_hist[HALT_POLL_HIST_COUNT];
92 #define KVM_STATS_NAME_SIZE 48
94 #endif /* __KVM_TYPES_H__ */