root_ht           352 net/sched/cls_u32.c 	struct tc_u_hnode *root_ht;
root_ht           356 net/sched/cls_u32.c 	root_ht = kzalloc(sizeof(*root_ht), GFP_KERNEL);
root_ht           357 net/sched/cls_u32.c 	if (root_ht == NULL)
root_ht           360 net/sched/cls_u32.c 	root_ht->refcnt++;
root_ht           361 net/sched/cls_u32.c 	root_ht->handle = tp_c ? gen_new_htid(tp_c, root_ht) : 0x80000000;
root_ht           362 net/sched/cls_u32.c 	root_ht->prio = tp->prio;
root_ht           363 net/sched/cls_u32.c 	root_ht->is_root = true;
root_ht           364 net/sched/cls_u32.c 	idr_init(&root_ht->handle_idr);
root_ht           369 net/sched/cls_u32.c 			kfree(root_ht);
root_ht           380 net/sched/cls_u32.c 	RCU_INIT_POINTER(root_ht->next, tp_c->hlist);
root_ht           381 net/sched/cls_u32.c 	rcu_assign_pointer(tp_c->hlist, root_ht);
root_ht           383 net/sched/cls_u32.c 	root_ht->refcnt++;
root_ht           384 net/sched/cls_u32.c 	rcu_assign_pointer(tp->root, root_ht);
root_ht           623 net/sched/cls_u32.c 	struct tc_u_hnode *root_ht = rtnl_dereference(tp->root);
root_ht           625 net/sched/cls_u32.c 	WARN_ON(root_ht == NULL);
root_ht           627 net/sched/cls_u32.c 	if (root_ht && --root_ht->refcnt == 1)
root_ht           628 net/sched/cls_u32.c 		u32_destroy_hnode(tp, root_ht, extack);