Commit 0571d366 authored by Xiao Guangrong's avatar Xiao Guangrong Committed by Avi Kivity

KVM: MMU: reduce 'struct kvm_mmu_page' size

Define 'multimapped' as 'bool'.
Signed-off-by: default avatarXiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Signed-off-by: default avatarMarcelo Tosatti <mtosatti@redhat.com>
parent 1b8c7934
...@@ -202,9 +202,9 @@ struct kvm_mmu_page { ...@@ -202,9 +202,9 @@ struct kvm_mmu_page {
* in this shadow page. * in this shadow page.
*/ */
DECLARE_BITMAP(slot_bitmap, KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS); DECLARE_BITMAP(slot_bitmap, KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS);
int multimapped; /* More than one parent_pte? */ bool multimapped; /* More than one parent_pte? */
int root_count; /* Currently serving as active root */
bool unsync; bool unsync;
int root_count; /* Currently serving as active root */
unsigned int unsync_children; unsigned int unsync_children;
union { union {
u64 *parent_pte; /* !multimapped */ u64 *parent_pte; /* !multimapped */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment