Lines Matching refs:table
57 unsigned long *table = crst_table_alloc_noprof(mm); in p4d_alloc_one_noprof() local
59 if (!table) in p4d_alloc_one_noprof()
61 crst_table_init(table, _REGION2_ENTRY_EMPTY); in p4d_alloc_one_noprof()
62 pagetable_p4d_ctor(virt_to_ptdesc(table)); in p4d_alloc_one_noprof()
64 return (p4d_t *) table; in p4d_alloc_one_noprof()
79 unsigned long *table = crst_table_alloc_noprof(mm); in pud_alloc_one_noprof() local
81 if (!table) in pud_alloc_one_noprof()
83 crst_table_init(table, _REGION3_ENTRY_EMPTY); in pud_alloc_one_noprof()
84 pagetable_pud_ctor(virt_to_ptdesc(table)); in pud_alloc_one_noprof()
86 return (pud_t *) table; in pud_alloc_one_noprof()
101 unsigned long *table = crst_table_alloc_noprof(mm); in pmd_alloc_one_noprof() local
103 if (!table) in pmd_alloc_one_noprof()
105 crst_table_init(table, _SEGMENT_ENTRY_EMPTY); in pmd_alloc_one_noprof()
106 if (!pagetable_pmd_ctor(mm, virt_to_ptdesc(table))) { in pmd_alloc_one_noprof()
107 crst_table_free(mm, table); in pmd_alloc_one_noprof()
110 return (pmd_t *) table; in pmd_alloc_one_noprof()
139 unsigned long *table = crst_table_alloc_noprof(mm); in pgd_alloc_noprof() local
141 if (!table) in pgd_alloc_noprof()
143 pagetable_pgd_ctor(virt_to_ptdesc(table)); in pgd_alloc_noprof()
145 return (pgd_t *) table; in pgd_alloc_noprof()