Lines Matching refs:cache_entry
1197 struct mmio_hpte_cache_entry *cache_entry = NULL; in kvmppc_hpte_hv_fault() local
1205 cache_entry = mmio_cache_search(vcpu, addr, slb_v, mmio_update); in kvmppc_hpte_hv_fault()
1207 if (cache_entry) { in kvmppc_hpte_hv_fault()
1208 index = cache_entry->pte_index; in kvmppc_hpte_hv_fault()
1209 v = cache_entry->hpte_v; in kvmppc_hpte_hv_fault()
1210 r = cache_entry->hpte_r; in kvmppc_hpte_hv_fault()
1211 gr = cache_entry->rpte; in kvmppc_hpte_hv_fault()
1268 vcpu->arch.pgfault_cache = cache_entry; in kvmppc_hpte_hv_fault()
1273 if (!cache_entry) { in kvmppc_hpte_hv_fault()
1281 cache_entry = next_mmio_cache_entry(vcpu); in kvmppc_hpte_hv_fault()
1282 cache_entry->eaddr = addr; in kvmppc_hpte_hv_fault()
1283 cache_entry->slb_base_pshift = pshift; in kvmppc_hpte_hv_fault()
1284 cache_entry->pte_index = index; in kvmppc_hpte_hv_fault()
1285 cache_entry->hpte_v = v; in kvmppc_hpte_hv_fault()
1286 cache_entry->hpte_r = r; in kvmppc_hpte_hv_fault()
1287 cache_entry->rpte = gr; in kvmppc_hpte_hv_fault()
1288 cache_entry->slb_v = slb_v; in kvmppc_hpte_hv_fault()
1289 cache_entry->mmio_update = mmio_update; in kvmppc_hpte_hv_fault()