Lines Matching defs:start
22 unsigned long start, end;
25 start = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4];
29 if (start & ~PAGE_MASK || end & ~PAGE_MASK || start >= end
30 || start < 2 * PAGE_SIZE)
33 VCPU_EVENT(vcpu, 5, "diag release pages %lX %lX", start, end);
36 * We checked for start >= end above, so lets check for the
39 if (end <= prefix || start >= prefix + 2 * PAGE_SIZE) {
40 gmap_discard(vcpu->arch.gmap, start, end);
43 * This is slow path. gmap_discard will check for start
48 gmap_discard(vcpu->arch.gmap, start, prefix);
49 if (start <= prefix)