Home
last modified time | relevance | path

Searched refs:tipc_node (Results 1 – 11 of 11) sorted by relevance

/linux-4.1.27/net/tipc/
Dnode.h117 struct tipc_node { struct
141 struct tipc_node *tipc_node_find(struct net *net, u32 addr); argument
142 void tipc_node_put(struct tipc_node *node);
143 struct tipc_node *tipc_node_create(struct net *net, u32 addr);
145 void tipc_node_attach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr);
146 void tipc_node_detach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr);
147 void tipc_node_link_down(struct tipc_node *n_ptr, struct tipc_link *l_ptr);
148 void tipc_node_link_up(struct tipc_node *n_ptr, struct tipc_link *l_ptr);
149 int tipc_node_active_links(struct tipc_node *n_ptr);
150 int tipc_node_is_up(struct tipc_node *n_ptr);
[all …]
Dnode.c43 static void node_lost_contact(struct tipc_node *n_ptr);
44 static void node_established_contact(struct tipc_node *n_ptr);
45 static void tipc_node_delete(struct tipc_node *node);
73 struct tipc_node *node = container_of(kref, struct tipc_node, kref); in tipc_node_kref_release()
78 void tipc_node_put(struct tipc_node *node) in tipc_node_put()
83 static void tipc_node_get(struct tipc_node *node) in tipc_node_get()
91 struct tipc_node *tipc_node_find(struct net *net, u32 addr) in tipc_node_find()
94 struct tipc_node *node; in tipc_node_find()
112 struct tipc_node *tipc_node_create(struct net *net, u32 addr) in tipc_node_create()
115 struct tipc_node *n_ptr, *temp_node; in tipc_node_create()
[all …]
Dbcast.h96 struct tipc_node node;
100 struct tipc_node *retransmit_to;
103 struct tipc_node;
119 struct tipc_node *tipc_bclink_retransmit_to(struct net *tn);
120 void tipc_bclink_acknowledge(struct tipc_node *n_ptr, u32 acked);
123 u32 tipc_bclink_acks_missing(struct tipc_node *n_ptr);
124 void tipc_bclink_update_link_state(struct tipc_node *node,
Daddr.c100 u32 n = tipc_node(addr); in tipc_addr_domain_valid()
120 return tipc_addr_domain_valid(addr) && tipc_node(addr); in tipc_addr_node_valid()
141 if (tipc_node(domain)) in tipc_addr_scope()
151 tipc_zone(addr), tipc_cluster(addr), tipc_node(addr)); in tipc_addr_string_fill()
Dlink.c105 static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf);
223 struct tipc_link *tipc_link_create(struct tipc_node *n_ptr, in tipc_link_create()
258 tipc_node(tn->own_addr), in tipc_link_create()
260 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer)); in tipc_link_create()
319 struct tipc_node *node; in tipc_link_delete_list()
433 struct tipc_node *owner = l_ptr->owner; in tipc_link_reset()
483 struct tipc_node *n_ptr; in tipc_link_reset_list()
498 struct tipc_node *node = link->owner; in link_activate()
803 struct tipc_node *node; in tipc_link_xmit()
859 static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf) in tipc_link_sync_rcv()
[all …]
Dbcast.c133 static void bclink_update_last_sent(struct tipc_node *node, u32 seqno) in bclink_update_last_sent()
144 struct tipc_node *tipc_bclink_retransmit_to(struct net *net) in tipc_bclink_retransmit_to()
190 void tipc_bclink_acknowledge(struct tipc_node *n_ptr, u32 acked) in tipc_bclink_acknowledge()
265 void tipc_bclink_update_link_state(struct tipc_node *n_ptr, in tipc_bclink_update_link_state()
326 struct tipc_node *n_ptr = tipc_node_find(net, msg_destnode(msg)); in bclink_peek_nack()
401 static void bclink_accept_pkt(struct tipc_node *node, u32 seqno) in bclink_accept_pkt()
431 struct tipc_node *node; in tipc_bclink_rcv()
578 u32 tipc_bclink_acks_missing(struct tipc_node *n_ptr) in tipc_bclink_acks_missing()
935 int n = tipc_node(node); in tipc_nmap_add()
950 int n = tipc_node(node); in tipc_nmap_remove()
Dlink.h149 struct tipc_node *owner;
212 struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
224 void tipc_link_reset_all(struct tipc_node *node);
Dname_distr.c91 struct tipc_node *node; in named_cluster_distribute()
232 struct tipc_node *node; in tipc_publ_subscribe()
253 struct tipc_node *node; in tipc_publ_unsubscribe()
Ddiscover.c127 struct tipc_node *node; in tipc_disc_rcv()
321 if (tipc_node(req->domain) && req->num_nodes) { in disc_timeout()
Dnetlink_compat.c708 tipc_node(node), nla_get_u32(publ[TIPC_NLA_PUBL_REF])); in tipc_nl_compat_name_table_dump()
805 tipc_node(node), in tipc_nl_compat_sk_dump()
/linux-4.1.27/include/uapi/linux/
Dtipc.h80 static inline unsigned int tipc_node(__u32 addr) in tipc_node() function