Searched refs:publ (Results 1 – 4 of 4) sorted by relevance
/linux-6.1.9/net/tipc/ |
D | name_distr.h | 71 struct sk_buff *tipc_named_publish(struct net *net, struct publication *publ); 72 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 | 903 struct nlattr *publ[TIPC_NLA_PUBL_MAX + 1]; in tipc_nl_compat_name_table_dump() local 921 err = nla_parse_nested_deprecated(publ, TIPC_NLA_PUBL_MAX, in tipc_nl_compat_name_table_dump() 935 (type != nla_get_u32(publ[TIPC_NLA_PUBL_TYPE]))) in tipc_nl_compat_name_table_dump() 937 if (lowbound && (lowbound > nla_get_u32(publ[TIPC_NLA_PUBL_UPPER]))) in tipc_nl_compat_name_table_dump() 939 if (upbound && (upbound < nla_get_u32(publ[TIPC_NLA_PUBL_LOWER]))) in tipc_nl_compat_name_table_dump() 943 nla_get_u32(publ[TIPC_NLA_PUBL_TYPE])); in tipc_nl_compat_name_table_dump() 949 nla_get_u32(publ[TIPC_NLA_PUBL_LOWER]), in tipc_nl_compat_name_table_dump() 950 nla_get_u32(publ[TIPC_NLA_PUBL_UPPER])); in tipc_nl_compat_name_table_dump() 955 node = nla_get_u32(publ[TIPC_NLA_PUBL_NODE]); in tipc_nl_compat_name_table_dump() 957 tipc_node(node), nla_get_u32(publ[TIPC_NLA_PUBL_REF])); in tipc_nl_compat_name_table_dump() [all …]
|
D | socket.c | 3705 struct publication *publ) in __tipc_nl_add_sk_publ() argument 3719 if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key)) in __tipc_nl_add_sk_publ() 3721 if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->sr.type)) in __tipc_nl_add_sk_publ() 3723 if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->sr.lower)) in __tipc_nl_add_sk_publ() 3725 if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->sr.upper)) in __tipc_nl_add_sk_publ()
|