Searched refs:nstart (Results 1 – 4 of 4) sorted by relevance
/Linux-v5.15/mm/ |
D | mprotect.c | 525 unsigned long nstart, end, tmp, reqprot; in do_mprotect_pkey() local 587 for (nstart = start ; ; ) { in do_mprotect_pkey() 631 error = vma->vm_ops->mprotect(vma, nstart, tmp, newflags); in do_mprotect_pkey() 636 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags); in do_mprotect_pkey() 640 nstart = tmp; in do_mprotect_pkey() 642 if (nstart < prev->vm_end) in do_mprotect_pkey() 643 nstart = prev->vm_end; in do_mprotect_pkey() 644 if (nstart >= end) in do_mprotect_pkey() 648 if (!vma || vma->vm_start != nstart) { in do_mprotect_pkey()
|
D | mlock.c | 562 unsigned long nstart, end, tmp; in apply_vma_lock_flags() local 581 for (nstart = start ; ; ) { in apply_vma_lock_flags() 590 error = mlock_fixup(vma, &prev, nstart, tmp, newflags); in apply_vma_lock_flags() 593 nstart = tmp; in apply_vma_lock_flags() 594 if (nstart < prev->vm_end) in apply_vma_lock_flags() 595 nstart = prev->vm_end; in apply_vma_lock_flags() 596 if (nstart >= end) in apply_vma_lock_flags() 600 if (!vma || vma->vm_start != nstart) { in apply_vma_lock_flags()
|
D | gup.c | 1565 unsigned long end, nstart, nend; in __mm_populate() local 1572 for (nstart = start; nstart < end; nstart = nend) { in __mm_populate() 1580 vma = find_vma(mm, nstart); in __mm_populate() 1581 } else if (nstart >= vma->vm_end) in __mm_populate() 1592 if (nstart < vma->vm_start) in __mm_populate() 1593 nstart = vma->vm_start; in __mm_populate() 1599 ret = populate_vma_page_range(vma, nstart, nend, &locked); in __mm_populate() 1607 nend = nstart + ret * PAGE_SIZE; in __mm_populate()
|
D | huge_memory.c | 2278 unsigned long nstart = next->vm_start; in vma_adjust_trans_huge() local 2279 nstart += adjust_next; in vma_adjust_trans_huge() 2280 split_huge_pmd_if_needed(next, nstart); in vma_adjust_trans_huge()
|