Lines Matching defs:ste
728 union segment_table_entry ste;
732 if (deref_table(vcpu->kvm, ptr, &ste.val))
734 if (ste.i)
736 if (ste.tt != TABLE_TYPE_SEGMENT)
738 if (ste.cs && asce.p)
740 if (ste.fc && edat1) {
741 dat_protection |= ste.fc1.p;
742 iep_protection = ste.fc1.iep;
743 raddr.sfaa = ste.fc1.sfaa;
746 dat_protection |= ste.fc0.p;
747 ptr = ste.fc0.pto * (PAGE_SIZE / 2) + vaddr.px * 8;
1124 union segment_table_entry ste;
1128 ste.val = ptr;
1132 rc = gmap_read_table(parent, ptr + vaddr.sx * 8, &ste.val);
1135 if (ste.i)
1137 if (ste.tt != TABLE_TYPE_SEGMENT)
1139 if (ste.cs && asce.p)
1141 *dat_protection |= ste.fc0.p;
1142 if (ste.fc && sg->edat_level >= 1) {
1144 ptr = ste.fc1.sfaa * _SEGMENT_SIZE;
1145 ste.val = ptr;
1148 ptr = ste.fc0.pto * (PAGE_SIZE / 2);
1150 ste.fc0.p |= *dat_protection;
1151 rc = gmap_shadow_pgt(sg, saddr, ste.val, *fake);