Home
last modified time | relevance | path

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

/arch/s390/kvm/
Dgaccess.c700 union region3_table_entry rtte; in guest_translate() local
704 if (deref_table(vcpu->kvm, ptr, &rtte.val)) in guest_translate()
706 if (rtte.i) in guest_translate()
708 if (rtte.tt != TABLE_TYPE_REGION3) in guest_translate()
710 if (rtte.cr && asce.p && edat2) in guest_translate()
712 if (rtte.fc && edat2) { in guest_translate()
713 dat_protection |= rtte.fc1.p; in guest_translate()
714 iep_protection = rtte.fc1.iep; in guest_translate()
715 raddr.rfaa = rtte.fc1.rfaa; in guest_translate()
718 if (vaddr.sx01 < rtte.fc0.tf) in guest_translate()
[all …]
/arch/s390/mm/
Dpgalloc.c441 unsigned long *rtte, next, table; in base_region3_walk() local
444 rtte = (unsigned long *) origin; in base_region3_walk()
445 rtte += (addr & _REGION3_INDEX) >> _REGION3_SHIFT; in base_region3_walk()
448 if (*rtte & _REGION_ENTRY_INVALID) { in base_region3_walk()
454 *rtte = table | _REGION3_ENTRY; in base_region3_walk()
456 table = *rtte & _REGION_ENTRY_ORIGIN; in base_region3_walk()
462 } while (rtte++, addr = next, addr < end); in base_region3_walk()