Lines Matching refs:kvm
14 #define KVM_MMU_LOCK_INIT(kvm) rwlock_init(&(kvm)->mmu_lock) argument
15 #define KVM_MMU_LOCK(kvm) write_lock(&(kvm)->mmu_lock) argument
16 #define KVM_MMU_UNLOCK(kvm) write_unlock(&(kvm)->mmu_lock) argument
17 #define KVM_MMU_READ_LOCK(kvm) read_lock(&(kvm)->mmu_lock) argument
18 #define KVM_MMU_READ_UNLOCK(kvm) read_unlock(&(kvm)->mmu_lock) argument
20 #define KVM_MMU_LOCK_INIT(kvm) spin_lock_init(&(kvm)->mmu_lock) argument
21 #define KVM_MMU_LOCK(kvm) spin_lock(&(kvm)->mmu_lock) argument
22 #define KVM_MMU_UNLOCK(kvm) spin_unlock(&(kvm)->mmu_lock) argument
23 #define KVM_MMU_READ_LOCK(kvm) spin_lock(&(kvm)->mmu_lock) argument
24 #define KVM_MMU_READ_UNLOCK(kvm) spin_unlock(&(kvm)->mmu_lock) argument
31 void gfn_to_pfn_cache_invalidate_start(struct kvm *kvm,
36 static inline void gfn_to_pfn_cache_invalidate_start(struct kvm *kvm, in gfn_to_pfn_cache_invalidate_start() argument