• Home
  • Raw
  • Download

Lines Matching refs:end

65 		unsigned long addr, unsigned long end, pgprot_t newprot,  in change_pte_range()  argument
132 } while (pte++, addr += PAGE_SIZE, addr != end); in change_pte_range()
140 pud_t *pud, unsigned long addr, unsigned long end, in change_pmd_range() argument
154 next = pmd_addr_end(addr, end); in change_pmd_range()
162 mmu_notifier_invalidate_range_start(mm, mni_start, end); in change_pmd_range()
189 } while (pmd++, addr = next, addr != end); in change_pmd_range()
192 mmu_notifier_invalidate_range_end(mm, mni_start, end); in change_pmd_range()
200 pgd_t *pgd, unsigned long addr, unsigned long end, in change_pud_range() argument
209 next = pud_addr_end(addr, end); in change_pud_range()
214 } while (pud++, addr = next, addr != end); in change_pud_range()
220 unsigned long addr, unsigned long end, pgprot_t newprot, in change_protection_range() argument
229 BUG_ON(addr >= end); in change_protection_range()
231 flush_cache_range(vma, addr, end); in change_protection_range()
234 next = pgd_addr_end(addr, end); in change_protection_range()
239 } while (pgd++, addr = next, addr != end); in change_protection_range()
243 flush_tlb_range(vma, start, end); in change_protection_range()
250 unsigned long end, pgprot_t newprot, in change_protection() argument
256 pages = hugetlb_change_protection(vma, start, end, newprot); in change_protection()
258 pages = change_protection_range(vma, start, end, newprot, dirty_accountable, prot_numa); in change_protection()
265 unsigned long start, unsigned long end, unsigned long newflags) in mprotect_fixup() argument
269 long nrpages = (end - start) >> PAGE_SHIFT; in mprotect_fixup()
304 *pprev = vma_merge(mm, *pprev, start, end, newflags, in mprotect_fixup()
321 if (end != vma->vm_end) { in mprotect_fixup()
322 error = split_vma(mm, vma, end, 0); in mprotect_fixup()
336 change_protection(vma, start, end, vma->vm_page_prot, in mprotect_fixup()
345 populate_vma_page_range(vma, start, end, NULL); in mprotect_fixup()
364 unsigned long nstart, end, tmp, reqprot; in do_mprotect_pkey() local
380 end = start + len; in do_mprotect_pkey()
381 if (end <= start) in do_mprotect_pkey()
405 if (vma->vm_start >= end) in do_mprotect_pkey()
415 end = vma->vm_end; in do_mprotect_pkey()
458 if (tmp > end) in do_mprotect_pkey()
459 tmp = end; in do_mprotect_pkey()
467 if (nstart >= end) in do_mprotect_pkey()