Home
last modified time | relevance | path

Searched refs:rtte (Results 1 – 2 of 2) sorted by relevance

/linux/arch/s390/kvm/
H A Dgaccess.c546 union region3_table_entry rtte; in guest_translate() local
550 if (deref_table(vcpu->kvm, ptr, &rtte.val)) in guest_translate()
552 if (rtte.i) in guest_translate()
554 if (rtte.tt != TABLE_TYPE_REGION3) in guest_translate()
556 if (rtte.cr && asce.p && edat2) in guest_translate()
558 if (rtte.fc && edat2) { in guest_translate()
559 dat_protection |= rtte.fc1.p; in guest_translate()
560 iep_protection = rtte.fc1.iep; in guest_translate()
561 raddr.rfaa = rtte.fc1.rfaa; in guest_translate()
564 if (vaddr.sx01 < rtte.fc0.tf) in guest_translate()
[all …]
/linux/arch/s390/mm/
H A Dpgalloc.c327 unsigned long *rtte, next, *table; in base_region3_walk() local
330 rtte = origin; in base_region3_walk()
331 rtte += (addr & _REGION3_INDEX) >> _REGION3_SHIFT; in base_region3_walk()
334 if (*rtte & _REGION_ENTRY_INVALID) { in base_region3_walk()
340 *rtte = __pa(table) | _REGION3_ENTRY; in base_region3_walk()
342 table = __va(*rtte & _REGION_ENTRY_ORIGIN); in base_region3_walk()
348 } while (rtte++, addr = next, addr < end); in base_region3_walk()