diff options
Diffstat (limited to 'drivers/kvm/x86.h')
-rw-r--r-- | drivers/kvm/x86.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/kvm/x86.h b/drivers/kvm/x86.h index be84f2b89095..5cdc3666e212 100644 --- a/drivers/kvm/x86.h +++ b/drivers/kvm/x86.h | |||
@@ -266,6 +266,15 @@ struct kvm_mem_alias { | |||
266 | struct kvm_arch{ | 266 | struct kvm_arch{ |
267 | int naliases; | 267 | int naliases; |
268 | struct kvm_mem_alias aliases[KVM_ALIAS_SLOTS]; | 268 | struct kvm_mem_alias aliases[KVM_ALIAS_SLOTS]; |
269 | |||
270 | unsigned int n_free_mmu_pages; | ||
271 | unsigned int n_requested_mmu_pages; | ||
272 | unsigned int n_alloc_mmu_pages; | ||
273 | struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES]; | ||
274 | /* | ||
275 | * Hash table of struct kvm_mmu_page. | ||
276 | */ | ||
277 | struct list_head active_mmu_pages; | ||
269 | }; | 278 | }; |
270 | 279 | ||
271 | struct kvm_vcpu_stat { | 280 | struct kvm_vcpu_stat { |