Lines Matching refs:new
427 pgtable_t new = pte_alloc_one(mm); in __pte_alloc() local
428 if (!new) in __pte_alloc()
449 pmd_populate(mm, pmd, new); in __pte_alloc()
450 new = NULL; in __pte_alloc()
453 if (new) in __pte_alloc()
454 pte_free(mm, new); in __pte_alloc()
460 pte_t *new = pte_alloc_one_kernel(&init_mm); in __pte_alloc_kernel() local
461 if (!new) in __pte_alloc_kernel()
468 pmd_populate_kernel(&init_mm, pmd, new); in __pte_alloc_kernel()
469 new = NULL; in __pte_alloc_kernel()
472 if (new) in __pte_alloc_kernel()
473 pte_free_kernel(&init_mm, new); in __pte_alloc_kernel()
4070 p4d_t *new = p4d_alloc_one(mm, address); in __p4d_alloc() local
4071 if (!new) in __p4d_alloc()
4078 p4d_free(mm, new); in __p4d_alloc()
4080 pgd_populate(mm, pgd, new); in __p4d_alloc()
4093 pud_t *new = pud_alloc_one(mm, address); in __pud_alloc() local
4094 if (!new) in __pud_alloc()
4103 p4d_populate(mm, p4d, new); in __pud_alloc()
4105 pud_free(mm, new); in __pud_alloc()
4109 pgd_populate(mm, p4d, new); in __pud_alloc()
4111 pud_free(mm, new); in __pud_alloc()
4126 pmd_t *new = pmd_alloc_one(mm, address); in __pmd_alloc() local
4127 if (!new) in __pmd_alloc()
4136 pud_populate(mm, pud, new); in __pmd_alloc()
4138 pmd_free(mm, new); in __pmd_alloc()
4142 pgd_populate(mm, pud, new); in __pmd_alloc()
4144 pmd_free(mm, new); in __pmd_alloc()