• Home
  • Raw
  • Download

Lines Matching refs:end

39 		unsigned long addr, unsigned long end, pgprot_t newprot,  in change_pte_range()  argument
157 } while (pte++, addr += PAGE_SIZE, addr != end); in change_pte_range()
190 pud_t *pud, unsigned long addr, unsigned long end, in change_pmd_range() argument
205 next = pmd_addr_end(addr, end); in change_pmd_range()
223 vma, vma->vm_mm, addr, end); in change_pmd_range()
251 } while (pmd++, addr = next, addr != end); in change_pmd_range()
262 p4d_t *p4d, unsigned long addr, unsigned long end, in change_pud_range() argument
271 next = pud_addr_end(addr, end); in change_pud_range()
276 } while (pud++, addr = next, addr != end); in change_pud_range()
282 pgd_t *pgd, unsigned long addr, unsigned long end, in change_p4d_range() argument
291 next = p4d_addr_end(addr, end); in change_p4d_range()
296 } while (p4d++, addr = next, addr != end); in change_p4d_range()
302 unsigned long addr, unsigned long end, pgprot_t newprot, in change_protection_range() argument
311 BUG_ON(addr >= end); in change_protection_range()
313 flush_cache_range(vma, addr, end); in change_protection_range()
316 next = pgd_addr_end(addr, end); in change_protection_range()
321 } while (pgd++, addr = next, addr != end); in change_protection_range()
325 flush_tlb_range(vma, start, end); in change_protection_range()
332 unsigned long end, pgprot_t newprot, in change_protection() argument
338 pages = hugetlb_change_protection(vma, start, end, newprot); in change_protection()
340 pages = change_protection_range(vma, start, end, newprot, dirty_accountable, prot_numa); in change_protection()
374 unsigned long start, unsigned long end, unsigned long newflags) in mprotect_fixup() argument
378 long nrpages = (end - start) >> PAGE_SHIFT; in mprotect_fixup()
399 error = walk_page_range(current->mm, start, end, in mprotect_fixup()
429 *pprev = vma_merge(mm, *pprev, start, end, newflags, in mprotect_fixup()
446 if (end != vma->vm_end) { in mprotect_fixup()
447 error = split_vma(mm, vma, end, 0); in mprotect_fixup()
461 change_protection(vma, start, end, vma->vm_page_prot, in mprotect_fixup()
470 populate_vma_page_range(vma, start, end, NULL); in mprotect_fixup()
489 unsigned long nstart, end, tmp, reqprot; in do_mprotect_pkey() local
507 end = start + len; in do_mprotect_pkey()
508 if (end <= start) in do_mprotect_pkey()
532 if (vma->vm_start >= end) in do_mprotect_pkey()
542 end = vma->vm_end; in do_mprotect_pkey()
585 if (tmp > end) in do_mprotect_pkey()
586 tmp = end; in do_mprotect_pkey()
594 if (nstart >= end) in do_mprotect_pkey()