Home
last modified time | relevance | path

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

/linux-6.6.21/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.6.21/arch/s390/mm/
Dpgalloc.c579 unsigned long *rtte, next, *table; in base_region3_walk() local
582 rtte = origin; in base_region3_walk()
583 rtte += (addr & _REGION3_INDEX) >> _REGION3_SHIFT; in base_region3_walk()
586 if (*rtte & _REGION_ENTRY_INVALID) { in base_region3_walk()
592 *rtte = __pa(table) | _REGION3_ENTRY; in base_region3_walk()
594 table = __va(*rtte & _REGION_ENTRY_ORIGIN); in base_region3_walk()
600 } while (rtte++, addr = next, addr < end); in base_region3_walk()