Lines Matching refs:tc
74 struct tc *get_tc(int index) in get_tc()
76 struct tc *res, *t; in get_tc()
100 INIT_LIST_HEAD(&v->tc); in alloc_vpe()
113 struct tc *alloc_tc(int index) in alloc_tc()
115 struct tc *tc; in alloc_tc() local
117 tc = kzalloc(sizeof(struct tc), GFP_KERNEL); in alloc_tc()
118 if (tc == NULL) in alloc_tc()
121 INIT_LIST_HEAD(&tc->tc); in alloc_tc()
122 tc->index = index; in alloc_tc()
125 list_add_tail(&tc->list, &vpecontrol.tc_list); in alloc_tc()
129 return tc; in alloc_tc()