Home
last modified time | relevance | path

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

/linux-2.6.39/net/tipc/
Dnode.h70 struct tipc_node { struct
111 struct tipc_node *tipc_node_find(u32 addr); argument
112 struct tipc_node *tipc_node_create(u32 addr);
113 void tipc_node_delete(struct tipc_node *n_ptr);
114 void tipc_node_attach_link(struct tipc_node *n_ptr, struct link *l_ptr);
115 void tipc_node_detach_link(struct tipc_node *n_ptr, struct link *l_ptr);
116 void tipc_node_link_down(struct tipc_node *n_ptr, struct link *l_ptr);
117 void tipc_node_link_up(struct tipc_node *n_ptr, struct link *l_ptr);
118 int tipc_node_active_links(struct tipc_node *n_ptr);
119 int tipc_node_redundant_links(struct tipc_node *n_ptr);
[all …]
Dnode.c42 static void node_lost_contact(struct tipc_node *n_ptr);
43 static void node_established_contact(struct tipc_node *n_ptr);
58 struct tipc_node *tipc_node_find(u32 addr) in tipc_node_find()
60 struct tipc_node *node; in tipc_node_find()
83 struct tipc_node *tipc_node_create(u32 addr) in tipc_node_create()
85 struct tipc_node *n_ptr, *temp_node; in tipc_node_create()
122 void tipc_node_delete(struct tipc_node *n_ptr) in tipc_node_delete()
138 void tipc_node_link_up(struct tipc_node *n_ptr, struct link *l_ptr) in tipc_node_link_up()
171 static void node_select_active_links(struct tipc_node *n_ptr) in node_select_active_links()
199 void tipc_node_link_down(struct tipc_node *n_ptr, struct link *l_ptr) in tipc_node_link_down()
[all …]
Dbcast.h72 struct tipc_node;
93 struct tipc_node *tipc_bclink_retransmit_to(void);
94 void tipc_bclink_acknowledge(struct tipc_node *n_ptr, u32 acked);
98 u32 tipc_bclink_acks_missing(struct tipc_node *n_ptr);
99 void tipc_bclink_check_gap(struct tipc_node *n_ptr, u32 seqno);
Daddr.c51 u32 n = tipc_node(addr); in tipc_addr_domain_valid()
72 return tipc_addr_domain_valid(addr) && tipc_node(addr); in tipc_addr_node_valid()
94 if (tipc_node(domain)) in tipc_addr_scope()
104 tipc_zone(addr), tipc_cluster(addr), tipc_node(addr)); in tipc_addr_string_fill()
Dnode_subscr.h53 struct tipc_node *node;
62 void tipc_nodesub_notify(struct tipc_node *node);
Dbcast.c103 struct tipc_node node;
104 struct tipc_node *retransmit_to;
162 static void bclink_set_gap(struct tipc_node *n_ptr) in bclink_set_gap()
194 struct tipc_node *tipc_bclink_retransmit_to(void) in tipc_bclink_retransmit_to()
225 void tipc_bclink_acknowledge(struct tipc_node *n_ptr, u32 acked) in tipc_bclink_acknowledge()
274 static void bclink_send_ack(struct tipc_node *n_ptr) in bclink_send_ack()
288 static void bclink_send_nack(struct tipc_node *n_ptr) in bclink_send_nack()
333 void tipc_bclink_check_gap(struct tipc_node *n_ptr, u32 last_sent) in tipc_bclink_check_gap()
353 struct tipc_node *n_ptr = tipc_node_find(dest); in tipc_bclink_peek_nack()
441 struct tipc_node *node = tipc_node_find(msg_prevnode(msg)); in tipc_bclink_recv_pkt()
[all …]
Dnode_subscr.c86 void tipc_nodesub_notify(struct tipc_node *node) in tipc_nodesub_notify()
Dlink.h117 struct tipc_node *owner;
210 struct link *tipc_link_create(struct tipc_node *n_ptr,
Dlink.c303 struct link *tipc_link_create(struct tipc_node *n_ptr, in tipc_link_create()
336 tipc_node(tipc_own_addr), in tipc_link_create()
338 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer)); in tipc_link_create()
946 struct tipc_node *n_ptr; in tipc_link_send()
1008 struct tipc_node *n_ptr; in tipc_send_buf_fast()
1050 struct tipc_node *node; in tipc_link_send_sections_fast()
1144 struct tipc_node *node; in link_send_sections_long()
1405 struct tipc_node *n_ptr; in link_reset_all()
1449 struct tipc_node *n_ptr; in link_retransmit_failure()
1614 struct tipc_node *n_ptr; in tipc_recv_msg()
[all …]
Dnet.c216 struct tipc_node *node, *t_node; in tipc_net_stop()
Ddiscover.c122 struct tipc_node *n_ptr; in tipc_disc_recv_msg()
Dname_distr.c111 struct tipc_node *n_ptr; in named_cluster_distribute()
Dbearer.c600 struct tipc_node *n_ptr = l_ptr->owner; in tipc_block_bearer()
Dport.c582 tipc_node(tipc_own_addr), p_ptr->ref); in port_print()
592 tipc_node(destnode), dport); in port_print()
Dname_table.c855 tipc_node(publ->node), publ->ref); in subseq_list()
/linux-2.6.39/include/linux/
Dtipc.h79 static inline unsigned int tipc_node(__u32 addr) in tipc_node() function