Lines Matching refs:tle
176 static union topology_entry *next_tle(union topology_entry *tle) in next_tle() argument
178 if (!tle->nl) in next_tle()
179 return (union topology_entry *)((struct topology_core *)tle + 1); in next_tle()
180 return (union topology_entry *)((struct topology_container *)tle + 1); in next_tle()
188 union topology_entry *tle, *end; in tl_to_masks() local
191 tle = info->tle; in tl_to_masks()
193 while (tle < end) { in tl_to_masks()
194 switch (tle->nl) { in tl_to_masks()
197 drawer->id = tle->container.id; in tl_to_masks()
201 book->id = tle->container.id; in tl_to_masks()
205 socket->id = tle->container.id; in tl_to_masks()
208 add_cpus_to_mask(&tle->cpu, drawer, book, socket); in tl_to_masks()
214 tle = next_tle(tle); in tl_to_masks()
550 static int __init detect_polarization(union topology_entry *tle) in detect_polarization() argument
554 while (tle->nl) in detect_polarization()
555 tle = next_tle(tle); in detect_polarization()
556 tl_core = (struct topology_core *)tle; in detect_polarization()
576 cpu_management = detect_polarization(info->tle); in topology_init_early()