Home
last modified time | relevance | path

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

/linux-6.1.9/arch/s390/kvm/
Dgaccess.c718 union region3_table_entry rtte; in guest_translate() local
722 if (deref_table(vcpu->kvm, ptr, &rtte.val)) in guest_translate()
724 if (rtte.i) in guest_translate()
726 if (rtte.tt != TABLE_TYPE_REGION3) in guest_translate()
728 if (rtte.cr && asce.p && edat2) in guest_translate()
730 if (rtte.fc && edat2) { in guest_translate()
731 dat_protection |= rtte.fc1.p; in guest_translate()
732 iep_protection = rtte.fc1.iep; in guest_translate()
733 raddr.rfaa = rtte.fc1.rfaa; in guest_translate()
736 if (vaddr.sx01 < rtte.fc0.tf) in guest_translate()
[all …]
/linux-6.1.9/arch/s390/mm/
Dpgalloc.c536 unsigned long *rtte, next, *table; in base_region3_walk() local
539 rtte = origin; in base_region3_walk()
540 rtte += (addr & _REGION3_INDEX) >> _REGION3_SHIFT; in base_region3_walk()
543 if (*rtte & _REGION_ENTRY_INVALID) { in base_region3_walk()
549 *rtte = __pa(table) | _REGION3_ENTRY; in base_region3_walk()
551 table = __va(*rtte & _REGION_ENTRY_ORIGIN); in base_region3_walk()
557 } while (rtte++, addr = next, addr < end); in base_region3_walk()