Lines Matching defs:next
227 unsigned long next;
238 next = pmd_addr_end(addr, end);
250 goto next;
261 if (next - addr != HPAGE_PMD_SIZE) {
274 goto next;
279 this_pages = change_pte_range(vma, pmd, addr, next, newprot,
282 next:
284 } while (pmd++, addr = next, addr != end);
299 unsigned long next;
304 next = pud_addr_end(addr, end);
307 pages += change_pmd_range(vma, pud, addr, next, newprot,
309 } while (pud++, addr = next, addr != end);
319 unsigned long next;
324 next = p4d_addr_end(addr, end);
327 pages += change_pud_range(vma, p4d, addr, next, newprot,
329 } while (p4d++, addr = next, addr != end);
340 unsigned long next;
349 next = pgd_addr_end(addr, end);
352 pages += change_p4d_range(vma, pgd, addr, next, newprot,
354 } while (pgd++, addr = next, addr != end);
382 unsigned long next, struct mm_walk *walk)
389 unsigned long addr, unsigned long next,
396 static int prot_none_test(unsigned long addr, unsigned long next,
462 * First try to merge with previous and/or next vma.