Lines Matching refs:tle
172 static union topology_entry *next_tle(union topology_entry *tle) in next_tle() argument
174 if (!tle->nl) in next_tle()
175 return (union topology_entry *)((struct topology_core *)tle + 1); in next_tle()
176 return (union topology_entry *)((struct topology_container *)tle + 1); in next_tle()
184 union topology_entry *tle, *end; in tl_to_masks() local
187 tle = info->tle; in tl_to_masks()
189 while (tle < end) { in tl_to_masks()
190 switch (tle->nl) { in tl_to_masks()
193 drawer->id = tle->container.id; in tl_to_masks()
197 book->id = tle->container.id; in tl_to_masks()
201 socket->id = tle->container.id; in tl_to_masks()
204 add_cpus_to_mask(&tle->cpu, drawer, book, socket); in tl_to_masks()
210 tle = next_tle(tle); in tl_to_masks()