Searched refs:nstart (Results 1 – 4 of 4) sorted by relevance
/linux/mm/ |
A D | mprotect.c | 525 unsigned long nstart, end, tmp, reqprot; in do_mprotect_pkey() local 590 for (nstart = start ; ; ) { in do_mprotect_pkey() 634 error = vma->vm_ops->mprotect(vma, nstart, tmp, newflags); in do_mprotect_pkey() 639 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags); in do_mprotect_pkey() 643 nstart = tmp; in do_mprotect_pkey() 645 if (nstart < prev->vm_end) in do_mprotect_pkey() 646 nstart = prev->vm_end; in do_mprotect_pkey() 647 if (nstart >= end) in do_mprotect_pkey() 651 if (!vma || vma->vm_start != nstart) { in do_mprotect_pkey()
|
A D | mlock.c | 563 unsigned long nstart, end, tmp; in apply_vma_lock_flags() local 582 for (nstart = start ; ; ) { in apply_vma_lock_flags() 591 error = mlock_fixup(vma, &prev, nstart, tmp, newflags); in apply_vma_lock_flags() 594 nstart = tmp; in apply_vma_lock_flags() 595 if (nstart < prev->vm_end) in apply_vma_lock_flags() 596 nstart = prev->vm_end; in apply_vma_lock_flags() 597 if (nstart >= end) in apply_vma_lock_flags() 601 if (!vma || vma->vm_start != nstart) { in apply_vma_lock_flags()
|
A D | gup.c | 1574 for (nstart = start; nstart < end; nstart = nend) { in __mm_populate() 1582 vma = find_vma(mm, nstart); in __mm_populate() 1594 if (nstart < vma->vm_start) in __mm_populate() 1595 nstart = vma->vm_start; in __mm_populate() 1722 nstart = start & PAGE_MASK; in fault_in_safe_writeable() 1724 if (end < nstart) in fault_in_safe_writeable() 1726 for (; nstart != end; nstart = nend) { in fault_in_safe_writeable() 1733 vma = find_vma(mm, nstart); in fault_in_safe_writeable() 1741 if (nstart < vma->vm_start) in fault_in_safe_writeable() 1742 nstart = vma->vm_start; in fault_in_safe_writeable() [all …]
|
A 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()
|
Completed in 16 milliseconds