Lines Matching defs:start
358 unsigned long start, end;
383 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
384 start = kvm_s390_logical_to_effective(vcpu, start);
386 /* start already designates an absolute address */
387 end = (start + _SEGMENT_SIZE) & ~(_SEGMENT_SIZE - 1);
389 start = kvm_s390_real_to_abs(vcpu, start);
390 end = start + PAGE_SIZE;
393 while (start != end) {
394 unsigned long vmaddr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(start));
417 start += PAGE_SIZE;
1030 unsigned long start, end;
1060 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
1061 start = kvm_s390_logical_to_effective(vcpu, start);
1064 if (kvm_s390_check_low_addr_prot_real(vcpu, start))
1071 start = kvm_s390_real_to_abs(vcpu, start);
1072 end = (start + PAGE_SIZE) & ~(PAGE_SIZE - 1);
1075 end = (start + _SEGMENT_SIZE) & ~(_SEGMENT_SIZE - 1);
1083 end = (start + _REGION3_SIZE) & ~(_REGION3_SIZE - 1);
1089 while (start != end) {
1094 vmaddr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(start));
1099 if (kvm_clear_guest(vcpu->kvm, start, PAGE_SIZE))
1124 start += PAGE_SIZE;