Lines Matching refs:new_table
145 u64 *new_table = (u64*)gd->arch.tlb_fillptr; in create_table() local
158 memset(new_table, 0, pt_len); in create_table()
160 return new_table; in create_table()
174 u64 *new_table; in split_block() local
184 new_table = create_table(); in split_block()
185 pr_debug("Splitting pte %p (%llx) into %p\n", pte, old_pte, new_table); in split_block()
188 new_table[i] = old_pte | (i << levelshift); in split_block()
192 new_table[i] |= PTE_TYPE_TABLE; in split_block()
194 pr_debug("Setting new_table[%lld] = %llx\n", i, new_table[i]); in split_block()
198 set_pte_table(pte, new_table); in split_block()
211 u64 *new_table; in add_map() local
217 new_table = create_table(); in add_map()
218 set_pte_table(pte, new_table); in add_map()
245 new_table = create_table(); in add_map()
246 set_pte_table(pte, new_table); in add_map()