• Home
  • Raw
  • Download

Lines Matching refs:end

39 		unsigned long addr, unsigned long end, pgprot_t newprot,  in change_pte_range()  argument
180 } while (pte++, addr += PAGE_SIZE, addr != end); in change_pte_range()
213 pud_t *pud, unsigned long addr, unsigned long end, in change_pmd_range() argument
228 next = pmd_addr_end(addr, end); in change_pmd_range()
246 vma, vma->vm_mm, addr, end); in change_pmd_range()
274 } while (pmd++, addr = next, addr != end); in change_pmd_range()
285 p4d_t *p4d, unsigned long addr, unsigned long end, in change_pud_range() argument
294 next = pud_addr_end(addr, end); in change_pud_range()
299 } while (pud++, addr = next, addr != end); in change_pud_range()
305 pgd_t *pgd, unsigned long addr, unsigned long end, in change_p4d_range() argument
314 next = p4d_addr_end(addr, end); in change_p4d_range()
319 } while (p4d++, addr = next, addr != end); in change_p4d_range()
325 unsigned long addr, unsigned long end, pgprot_t newprot, in change_protection_range() argument
334 BUG_ON(addr >= end); in change_protection_range()
336 flush_cache_range(vma, addr, end); in change_protection_range()
339 next = pgd_addr_end(addr, end); in change_protection_range()
344 } while (pgd++, addr = next, addr != end); in change_protection_range()
348 flush_tlb_range(vma, start, end); in change_protection_range()
355 unsigned long end, pgprot_t newprot, in change_protection() argument
363 pages = hugetlb_change_protection(vma, start, end, newprot); in change_protection()
365 pages = change_protection_range(vma, start, end, newprot, in change_protection()
400 unsigned long start, unsigned long end, unsigned long newflags) in mprotect_fixup() argument
404 long nrpages = (end - start) >> PAGE_SHIFT; in mprotect_fixup()
425 error = walk_page_range(current->mm, start, end, in mprotect_fixup()
455 *pprev = vma_merge(mm, *pprev, start, end, newflags, in mprotect_fixup()
472 if (end != vma->vm_end) { in mprotect_fixup()
473 error = split_vma(mm, vma, end, 0); in mprotect_fixup()
488 change_protection(vma, start, end, vma->vm_page_prot, in mprotect_fixup()
498 populate_vma_page_range(vma, start, end, NULL); in mprotect_fixup()
517 unsigned long nstart, end, tmp, reqprot; in do_mprotect_pkey() local
535 end = start + len; in do_mprotect_pkey()
536 if (end <= start) in do_mprotect_pkey()
560 if (vma->vm_start >= end) in do_mprotect_pkey()
570 end = vma->vm_end; in do_mprotect_pkey()
619 if (tmp > end) in do_mprotect_pkey()
620 tmp = end; in do_mprotect_pkey()
628 if (nstart >= end) in do_mprotect_pkey()