Searched refs:nstart (Results 1 – 5 of 5) sorted by relevance
/linux-6.3-rc2/mm/kmsan/ |
A 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-6.3-rc2/mm/ |
A D | mprotect.c | 705 unsigned long nstart, end, tmp, reqprot; in do_mprotect_pkey() local 773 nstart = start; in do_mprotect_pkey() 826 error = vma->vm_ops->mprotect(vma, nstart, tmp, newflags); in do_mprotect_pkey() 831 error = mprotect_fixup(&vmi, &tlb, vma, &prev, nstart, tmp, newflags); in do_mprotect_pkey() 836 nstart = tmp; in do_mprotect_pkey()
|
A D | mlock.c | 472 unsigned long nstart, end, tmp; in apply_vma_lock_flags() local 492 nstart = start; in apply_vma_lock_flags() 506 error = mlock_fixup(&vmi, vma, &prev, nstart, tmp, newflags); in apply_vma_lock_flags() 509 nstart = tmp; in apply_vma_lock_flags()
|
A D | gup.c | 1617 unsigned long end, nstart, nend; in __mm_populate() local 1624 for (nstart = start; nstart < end; nstart = nend) { in __mm_populate() 1632 vma = find_vma_intersection(mm, nstart, end); in __mm_populate() 1633 } else if (nstart >= vma->vm_end) in __mm_populate() 1645 if (nstart < vma->vm_start) in __mm_populate() 1646 nstart = vma->vm_start; in __mm_populate() 1652 ret = populate_vma_page_range(vma, nstart, nend, &locked); in __mm_populate() 1660 nend = nstart + ret * PAGE_SIZE; in __mm_populate()
|
A D | huge_memory.c | 2360 unsigned long nstart = next->vm_start; in vma_adjust_trans_huge() local 2361 nstart += adjust_next; in vma_adjust_trans_huge() 2362 split_huge_pmd_if_needed(next, nstart); in vma_adjust_trans_huge()
|
Completed in 16 milliseconds