Lines Matching refs:local_publ
62 struct list_head local_publ; member
110 INIT_LIST_HEAD(&publ->local_publ); in tipc_publ_create()
212 INIT_LIST_HEAD(&sr->local_publ); in tipc_service_create_range()
248 list_add(&p->local_publ, &sr->local_publ); in tipc_service_insert_publ()
274 list_del(&p->local_publ); in tipc_service_remove_publ()
450 list = &sr->local_publ; in tipc_nametbl_translate()
453 p = list_first_entry(list, struct publication, local_publ); in tipc_nametbl_translate()
454 list_move_tail(&p->local_publ, &sr->local_publ); in tipc_nametbl_translate()
455 } else if (legacy && !*dnode && !list_empty(&sr->local_publ)) { in tipc_nametbl_translate()
456 list = &sr->local_publ; in tipc_nametbl_translate()
457 p = list_first_entry(list, struct publication, local_publ); in tipc_nametbl_translate()
458 list_move_tail(&p->local_publ, &sr->local_publ); in tipc_nametbl_translate()
535 list_for_each_entry(p, &sr->local_publ, local_publ) { in tipc_nametbl_mc_lookup()