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