Lines Matching refs:node

2  * net/tipc/node.h: Include file for TIPC node management routines
47 * Out-of-range value for node signature
53 * TIPC_WAIT_OWN_LINKS_DOWN: wait until peer node is declared down
54 * TIPC_NOTIFY_NODE_DOWN: notify node is down
55 * TIPC_NOTIFY_NODE_UP: notify node is up
70 * struct tipc_node_bclink - TIPC node bclink structure
71 * @acked: sequence # of last outbound b'cast message acknowledged by node
72 * @last_in: sequence # of last in-sequence b'cast message received from node
73 * @last_sent: sequence # of last b'cast message sent by node
76 * @deferred_head: oldest OOS b'cast message received from node
77 * @deferred_tail: newest OOS b'cast message received from node
78 * @reasm_buf: broadcast reassembly queue head from node
79 * @recv_permitted: true if node is allowed to receive b'cast messages
94 * struct tipc_node - TIPC node structure
95 * @addr: network address of node
98 * @active_links: pointers to active links to node
99 * @links: pointers to all links to node
100 * @action_flags: bit mask of different types of node actions
103 * @working_links: number of working links to node (both active and standby)
104 * @link_cnt: number of links to node
105 * @signature: node instance identifier
107 * @nsub: list of "node down" subscriptions monitoring node
143 int tipc_node_get_linkname(u32 bearer_id, u32 node, char *linkname, size_t len);
144 void tipc_node_unlock(struct tipc_node *node);
148 static inline void tipc_node_lock(struct tipc_node *node)
150 spin_lock_bh(&node->lock);
153 static inline bool tipc_node_blocked(struct tipc_node *node)
155 return (node->action_flags & (TIPC_WAIT_PEER_LINKS_DOWN |
161 struct tipc_node *node;
164 node = tipc_node_find(addr);
166 if (likely(node))
167 mtu = node->act_mtus[selector & 1];