Lines Matching refs:node
142 void tipc_node_put(struct tipc_node *node);
151 int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 node,
153 void tipc_node_unlock(struct tipc_node *node);
159 static inline void tipc_node_lock(struct tipc_node *node) in tipc_node_lock() argument
161 spin_lock_bh(&node->lock); in tipc_node_lock()
164 static inline bool tipc_node_blocked(struct tipc_node *node) in tipc_node_blocked() argument
166 return (node->action_flags & (TIPC_WAIT_PEER_LINKS_DOWN | in tipc_node_blocked()
172 struct tipc_node *node; in tipc_node_get_mtu() local
175 node = tipc_node_find(net, addr); in tipc_node_get_mtu()
177 if (likely(node)) { in tipc_node_get_mtu()
178 mtu = node->act_mtus[selector & 1]; in tipc_node_get_mtu()
179 tipc_node_put(node); in tipc_node_get_mtu()