Lines Matching refs:direct

153 				  unsigned long end, bool add, bool direct)  in modify_pte_table()  argument
168 if (!direct) in modify_pte_table()
172 if (!direct) { in modify_pte_table()
188 if (direct) in modify_pte_table()
210 unsigned long end, bool add, bool direct) in modify_pmd_table() argument
230 if (!direct) in modify_pmd_table()
234 } else if (!direct && vmemmap_unuse_sub_pmd(addr, next)) { in modify_pmd_table()
243 MACHINE_HAS_EDAT1 && direct && in modify_pmd_table()
248 } else if (!direct && MACHINE_HAS_EDAT1) { in modify_pmd_table()
273 if (!direct) in modify_pmd_table()
277 ret = modify_pte_table(pmd, addr, next, add, direct); in modify_pmd_table()
285 if (direct) in modify_pmd_table()
312 bool add, bool direct) in modify_pud_table() argument
339 MACHINE_HAS_EDAT2 && direct && in modify_pud_table()
352 ret = modify_pmd_table(pud, addr, next, add, direct); in modify_pud_table()
360 if (direct) in modify_pud_table()
389 bool add, bool direct) in modify_p4d_table() argument
408 ret = modify_pud_table(p4d, addr, next, add, direct); in modify_p4d_table()
443 bool direct) in modify_pagetable() argument
465 ret = modify_p4d_table(pgd, addr, next, add, direct); in modify_pagetable()
478 static int add_pagetable(unsigned long start, unsigned long end, bool direct) in add_pagetable() argument
480 return modify_pagetable(start, end, true, direct); in add_pagetable()
483 static int remove_pagetable(unsigned long start, unsigned long end, bool direct) in remove_pagetable() argument
485 return modify_pagetable(start, end, false, direct); in remove_pagetable()