Searched refs:nstart (Results 1 – 5 of 5) sorted by relevance
/Linux-v6.6/mm/kmsan/ |
D | init.c | 32 u64 nstart = (u64)start, nend = (u64)end, cstart, cend; in kmsan_record_future_shadow_range() local 36 KMSAN_WARN_ON((nstart >= nend) || !nstart || !nend); in kmsan_record_future_shadow_range() 37 nstart = ALIGN_DOWN(nstart, PAGE_SIZE); in kmsan_record_future_shadow_range() 50 if ((cstart < nstart && cend < nstart) || in kmsan_record_future_shadow_range() 54 start_end_pairs[i].start = min(nstart, cstart); in kmsan_record_future_shadow_range() 61 start_end_pairs[future_index].start = nstart; in kmsan_record_future_shadow_range()
|
/Linux-v6.6/mm/ |
D | mprotect.c | 693 unsigned long nstart, end, tmp, reqprot; in do_mprotect_pkey() local 761 nstart = start; in do_mprotect_pkey() 814 error = vma->vm_ops->mprotect(vma, nstart, tmp, newflags); in do_mprotect_pkey() 819 error = mprotect_fixup(&vmi, &tlb, vma, &prev, nstart, tmp, newflags); in do_mprotect_pkey() 824 nstart = tmp; in do_mprotect_pkey()
|
D | mlock.c | 480 unsigned long nstart, end, tmp; in apply_vma_lock_flags() local 499 nstart = start; in apply_vma_lock_flags() 514 error = mlock_fixup(&vmi, vma, &prev, nstart, tmp, newflags); in apply_vma_lock_flags() 518 nstart = tmp; in apply_vma_lock_flags()
|
D | gup.c | 1740 unsigned long end, nstart, nend; in __mm_populate() local 1747 for (nstart = start; nstart < end; nstart = nend) { in __mm_populate() 1755 vma = find_vma_intersection(mm, nstart, end); in __mm_populate() 1756 } else if (nstart >= vma->vm_end) in __mm_populate() 1768 if (nstart < vma->vm_start) in __mm_populate() 1769 nstart = vma->vm_start; in __mm_populate() 1775 ret = populate_vma_page_range(vma, nstart, nend, &locked); in __mm_populate() 1783 nend = nstart + ret * PAGE_SIZE; in __mm_populate()
|
D | huge_memory.c | 2341 unsigned long nstart = next->vm_start; in vma_adjust_trans_huge() local 2342 nstart += adjust_next; in vma_adjust_trans_huge() 2343 split_huge_pmd_if_needed(next, nstart); in vma_adjust_trans_huge()
|