Lines Matching refs:cache_entry
1054 struct mmio_hpte_cache_entry *cache_entry = NULL; in kvmppc_hpte_hv_fault() local
1062 cache_entry = mmio_cache_search(vcpu, addr, slb_v, mmio_update); in kvmppc_hpte_hv_fault()
1064 if (cache_entry) { in kvmppc_hpte_hv_fault()
1065 index = cache_entry->pte_index; in kvmppc_hpte_hv_fault()
1066 v = cache_entry->hpte_v; in kvmppc_hpte_hv_fault()
1067 r = cache_entry->hpte_r; in kvmppc_hpte_hv_fault()
1068 gr = cache_entry->rpte; in kvmppc_hpte_hv_fault()
1125 vcpu->arch.pgfault_cache = cache_entry; in kvmppc_hpte_hv_fault()
1130 if (!cache_entry) { in kvmppc_hpte_hv_fault()
1138 cache_entry = next_mmio_cache_entry(vcpu); in kvmppc_hpte_hv_fault()
1139 cache_entry->eaddr = addr; in kvmppc_hpte_hv_fault()
1140 cache_entry->slb_base_pshift = pshift; in kvmppc_hpte_hv_fault()
1141 cache_entry->pte_index = index; in kvmppc_hpte_hv_fault()
1142 cache_entry->hpte_v = v; in kvmppc_hpte_hv_fault()
1143 cache_entry->hpte_r = r; in kvmppc_hpte_hv_fault()
1144 cache_entry->rpte = gr; in kvmppc_hpte_hv_fault()
1145 cache_entry->slb_v = slb_v; in kvmppc_hpte_hv_fault()
1146 cache_entry->mmio_update = mmio_update; in kvmppc_hpte_hv_fault()