Lines Matching refs:start
356 unsigned long start, end;
381 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
382 start = kvm_s390_logical_to_effective(vcpu, start);
384 /* start already designates an absolute address */
385 end = (start + _SEGMENT_SIZE) & ~(_SEGMENT_SIZE - 1);
387 start = kvm_s390_real_to_abs(vcpu, start);
388 end = start + PAGE_SIZE;
391 while (start != end) {
392 unsigned long vmaddr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(start));
415 start += PAGE_SIZE;
1042 unsigned long start, end;
1072 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
1073 start = kvm_s390_logical_to_effective(vcpu, start);
1076 if (kvm_s390_check_low_addr_prot_real(vcpu, start))
1083 start = kvm_s390_real_to_abs(vcpu, start);
1084 end = (start + PAGE_SIZE) & ~(PAGE_SIZE - 1);
1087 end = (start + _SEGMENT_SIZE) & ~(_SEGMENT_SIZE - 1);
1095 end = (start + _REGION3_SIZE) & ~(_REGION3_SIZE - 1);
1101 while (start != end) {
1106 vmaddr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(start));
1111 if (kvm_clear_guest(vcpu->kvm, start, PAGE_SIZE))
1136 start += PAGE_SIZE;