Searched refs:publ (Results 1 – 4 of 4) sorted by relevance
/linux-6.12.1/net/tipc/ |
D | name_distr.h | 70 struct sk_buff *tipc_named_publish(struct net *net, struct publication *publ); 71 struct sk_buff *tipc_named_withdraw(struct net *net, struct publication *publ);
|
D | name_distr.c | 153 struct publication *publ; in named_distribute() local 161 list_for_each_entry(publ, pls, binding_node) { in named_distribute() 178 publ_to_item(item, publ); in named_distribute() 258 struct publication *publ, *tmp; in tipc_publ_notify() local 260 list_for_each_entry_safe(publ, tmp, nsub_list, binding_node) in tipc_publ_notify() 261 tipc_publ_purge(net, publ, addr); in tipc_publ_notify()
|
D | netlink_compat.c | 900 struct nlattr *publ[TIPC_NLA_PUBL_MAX + 1]; in tipc_nl_compat_name_table_dump() local 918 err = nla_parse_nested_deprecated(publ, TIPC_NLA_PUBL_MAX, in tipc_nl_compat_name_table_dump() 932 (type != nla_get_u32(publ[TIPC_NLA_PUBL_TYPE]))) in tipc_nl_compat_name_table_dump() 934 if (lowbound && (lowbound > nla_get_u32(publ[TIPC_NLA_PUBL_UPPER]))) in tipc_nl_compat_name_table_dump() 936 if (upbound && (upbound < nla_get_u32(publ[TIPC_NLA_PUBL_LOWER]))) in tipc_nl_compat_name_table_dump() 940 nla_get_u32(publ[TIPC_NLA_PUBL_TYPE])); in tipc_nl_compat_name_table_dump() 946 nla_get_u32(publ[TIPC_NLA_PUBL_LOWER]), in tipc_nl_compat_name_table_dump() 947 nla_get_u32(publ[TIPC_NLA_PUBL_UPPER])); in tipc_nl_compat_name_table_dump() 952 node = nla_get_u32(publ[TIPC_NLA_PUBL_NODE]); in tipc_nl_compat_name_table_dump() 954 tipc_node(node), nla_get_u32(publ[TIPC_NLA_PUBL_REF])); in tipc_nl_compat_name_table_dump() [all …]
|
D | socket.c | 3698 struct publication *publ) in __tipc_nl_add_sk_publ() argument 3712 if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key)) in __tipc_nl_add_sk_publ() 3714 if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->sr.type)) in __tipc_nl_add_sk_publ() 3716 if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->sr.lower)) in __tipc_nl_add_sk_publ() 3718 if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->sr.upper)) in __tipc_nl_add_sk_publ()
|