diff options
author | Zhang Xiantao <xiantao.zhang@intel.com> | 2007-12-14 10:23:23 +0800 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 17:58:10 +0200 |
commit | 0711456c0d78335d24e4f92aa40d32c78fd44aa8 (patch) | |
tree | 8a83659283c043da69c6987ec89bff5077350778 | |
parent | bfc6d222bdb1123d12c1193bcd7c755e6617b405 (diff) | |
download | linux-3.10-0711456c0d78335d24e4f92aa40d32c78fd44aa8.tar.gz linux-3.10-0711456c0d78335d24e4f92aa40d32c78fd44aa8.tar.bz2 linux-3.10-0711456c0d78335d24e4f92aa40d32c78fd44aa8.zip |
KVM: Portability: Move kvm_vm_stat to x86.h
This patch moves kvm_vm_stat to x86.h, and every arch
can define its own kvm_vm_stat in $arch.h
Signed-off-by: Zhang Xiantao <xiantao.zhang@intel.com>
Acked-by: Carsten Otte <cotte@de.ibm.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
-rw-r--r-- | drivers/kvm/kvm.h | 10 | ||||
-rw-r--r-- | drivers/kvm/x86.h | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/drivers/kvm/kvm.h b/drivers/kvm/kvm.h index ab9657a6f0c..bf6a3b330a3 100644 --- a/drivers/kvm/kvm.h +++ b/drivers/kvm/kvm.h @@ -103,16 +103,6 @@ struct kvm_memory_slot { int user_alloc; }; -struct kvm_vm_stat { - u32 mmu_shadow_zapped; - u32 mmu_pte_write; - u32 mmu_pte_updated; - u32 mmu_pde_zapped; - u32 mmu_flooded; - u32 mmu_recycled; - u32 remote_tlb_flush; -}; - struct kvm { struct mutex lock; /* protects everything except vcpus */ struct mm_struct *mm; /* userspace tied to this vm */ diff --git a/drivers/kvm/x86.h b/drivers/kvm/x86.h index 94558393485..dfb8091971a 100644 --- a/drivers/kvm/x86.h +++ b/drivers/kvm/x86.h @@ -283,6 +283,16 @@ struct kvm_arch{ struct page *apic_access_page; }; +struct kvm_vm_stat { + u32 mmu_shadow_zapped; + u32 mmu_pte_write; + u32 mmu_pte_updated; + u32 mmu_pde_zapped; + u32 mmu_flooded; + u32 mmu_recycled; + u32 remote_tlb_flush; +}; + struct kvm_vcpu_stat { u32 pf_fixed; u32 pf_guest; |