diff options
author | Xiao Guangrong <xiaoguangrong@cn.fujitsu.com> | 2011-05-15 23:26:20 +0800 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-07-12 11:45:06 +0300 |
commit | 53c07b18787d564a105e1aa678795d67eeb27447 (patch) | |
tree | 2ad7226301479debf5d5b921bcc48d48b53f2778 /arch/x86/include/asm/kvm_host.h | |
parent | 1249b96e72533ffdb2fa25b5d7471918b065ccc8 (diff) | |
download | blackbird-op-linux-53c07b18787d564a105e1aa678795d67eeb27447.tar.gz blackbird-op-linux-53c07b18787d564a105e1aa678795d67eeb27447.zip |
KVM: MMU: abstract the operation of rmap
Abstract the operation of rmap to spte_list, then we can use it for the
reverse mapping of parent pte in the later patch
Signed-off-by: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/include/asm/kvm_host.h')
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index 387780eb97bb..e6a4a57e142b 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h @@ -347,7 +347,7 @@ struct kvm_vcpu_arch { struct kvm_pv_mmu_op_buffer mmu_op_buffer; struct kvm_mmu_memory_cache mmu_pte_chain_cache; - struct kvm_mmu_memory_cache mmu_rmap_desc_cache; + struct kvm_mmu_memory_cache mmu_pte_list_desc_cache; struct kvm_mmu_memory_cache mmu_page_cache; struct kvm_mmu_memory_cache mmu_page_header_cache; |