kvm_memslots
Regular
4.4
: Absent ⚠️
4.8
: Absent ⚠️
4.10
: Absent ⚠️
4.13
: Absent ⚠️
4.15
: Absent ⚠️
4.18
: Absent ⚠️
5.0
: Absent ⚠️
5.3
: Absent ⚠️
5.4
: Absent ⚠️
5.8
: Absent ⚠️
5.11
: ✅struct kvm_memslots {
u64 generation;
short int id_to_index[512];
atomic_t lru_slot;
int used_slots;
struct kvm_memory_slot memslots[0];
};
5.13
: ✅struct kvm_memslots {
u64 generation;
short int id_to_index[32767];
atomic_t lru_slot;
int used_slots;
struct kvm_memory_slot memslots[0];
};
5.15
: ✅struct kvm_memslots {
u64 generation;
short int id_to_index[32767];
atomic_t last_used_slot;
int used_slots;
struct kvm_memory_slot memslots[0];
};
5.19
: ✅struct kvm_memslots {
u64 generation;
atomic_long_t last_used_slot;
struct rb_root_cached hva_tree;
struct rb_root gfn_tree;
struct hlist_head id_hash[128];
int node_idx;
};
6.2
: ✅struct kvm_memslots {
u64 generation;
atomic_long_t last_used_slot;
struct rb_root_cached hva_tree;
struct rb_root gfn_tree;
struct hlist_head id_hash[128];
int node_idx;
};
6.5
: ✅struct kvm_memslots {
u64 generation;
atomic_long_t last_used_slot;
struct rb_root_cached hva_tree;
struct rb_root gfn_tree;
struct hlist_head id_hash[128];
int node_idx;
};
6.8
: ✅struct kvm_memslots {
u64 generation;
atomic_long_t last_used_slot;
struct rb_root_cached hva_tree;
struct rb_root gfn_tree;
struct hlist_head id_hash[128];
int node_idx;
};
arm64
: ✅struct kvm_memslots {
u64 generation;
struct kvm_memory_slot memslots[512];
short int id_to_index[512];
atomic_t lru_slot;
int used_slots;
};
armhf
: Absent ⚠️
ppc64el
: ✅struct kvm_memslots {
u64 generation;
struct kvm_memory_slot memslots[512];
short int id_to_index[512];
atomic_t lru_slot;
int used_slots;
};
riscv64
: Absent ⚠️
aws
: Absent ⚠️
azure
: Absent ⚠️
gcp
: Absent ⚠️
lowlatency
: Absent ⚠️
Regular
5.11
and 5.13
⚠️short int id_to_index[512]
➡️ short int id_to_index[32767]
5.13
and 5.15
⚠️atomic_t last_used_slot
atomic_t lru_slot
5.15
and 5.19
⚠️struct rb_root_cached hva_tree
struct rb_root gfn_tree
struct hlist_head id_hash[128]
int node_idx
short int id_to_index[32767]
int used_slots
struct kvm_memory_slot memslots[0]
atomic_t last_used_slot
➡️ atomic_long_t last_used_slot
5.19
and 6.2
✅
6.2
and 6.5
✅
6.5
and 6.8
✅