Lines Matching refs:nt
260 struct name_table *nt = tipc_name_table(net);
275 hd = &nt->services[hash(ua->sr.type)];
464 struct name_table *nt = tipc_name_table(net);
468 service_head = &nt->services[hash(ua->sr.type)];
763 struct name_table *nt = tipc_name_table(net);
771 if (nt->local_publ_count >= TIPC_MAX_PUBL) {
778 nt->local_publ_count++;
781 rc_dests = nt->rc_dests;
801 struct name_table *nt = tipc_name_table(net);
811 nt->local_publ_count--;
816 rc_dests = nt->rc_dests;
888 struct name_table *nt;
891 nt = kzalloc(sizeof(*nt), GFP_KERNEL);
892 if (!nt)
896 INIT_HLIST_HEAD(&nt->services[i]);
898 INIT_LIST_HEAD(&nt->node_scope);
899 INIT_LIST_HEAD(&nt->cluster_scope);
900 rwlock_init(&nt->cluster_scope_lock);
901 tn->nametbl = nt;
932 struct name_table *nt = tipc_name_table(net);
943 if (hlist_empty(&nt->services[i]))
945 service_head = &nt->services[i];
953 kfree_rcu(nt, rcu);