Home
last modified time | relevance | path

Searched refs:nstart (Results 1 – 4 of 4) sorted by relevance

/mm/
Dmlock.c602 unsigned long nstart, end, tmp; in apply_vma_lock_flags() local
621 for (nstart = start ; ; ) { in apply_vma_lock_flags()
630 error = mlock_fixup(vma, &prev, nstart, tmp, newflags); in apply_vma_lock_flags()
633 nstart = tmp; in apply_vma_lock_flags()
634 if (nstart < prev->vm_end) in apply_vma_lock_flags()
635 nstart = prev->vm_end; in apply_vma_lock_flags()
636 if (nstart >= end) in apply_vma_lock_flags()
640 if (!vma || vma->vm_start != nstart) { in apply_vma_lock_flags()
Dmprotect.c517 unsigned long nstart, end, tmp, reqprot; in do_mprotect_pkey() local
579 for (nstart = start ; ; ) { in do_mprotect_pkey()
621 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags); in do_mprotect_pkey()
624 nstart = tmp; in do_mprotect_pkey()
626 if (nstart < prev->vm_end) in do_mprotect_pkey()
627 nstart = prev->vm_end; in do_mprotect_pkey()
628 if (nstart >= end) in do_mprotect_pkey()
632 if (!vma || vma->vm_start != nstart) { in do_mprotect_pkey()
Dgup.c1488 unsigned long end, nstart, nend; in __mm_populate() local
1495 for (nstart = start; nstart < end; nstart = nend) { in __mm_populate()
1503 vma = find_vma(mm, nstart); in __mm_populate()
1504 } else if (nstart >= vma->vm_end) in __mm_populate()
1515 if (nstart < vma->vm_start) in __mm_populate()
1516 nstart = vma->vm_start; in __mm_populate()
1522 ret = populate_vma_page_range(vma, nstart, nend, &locked); in __mm_populate()
1530 nend = nstart + ret * PAGE_SIZE; in __mm_populate()
Dhuge_memory.c2358 unsigned long nstart = next->vm_start; in vma_adjust_trans_huge() local
2359 nstart += adjust_next; in vma_adjust_trans_huge()
2360 if (nstart & ~HPAGE_PMD_MASK && in vma_adjust_trans_huge()
2361 (nstart & HPAGE_PMD_MASK) >= next->vm_start && in vma_adjust_trans_huge()
2362 (nstart & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= next->vm_end) in vma_adjust_trans_huge()
2363 split_huge_pmd_address(next, nstart, false, NULL); in vma_adjust_trans_huge()