Lines Matching refs:l_ptr
218 void tipc_link_failover_send_queue(struct tipc_link *l_ptr);
219 void tipc_link_dup_queue_xmit(struct tipc_link *l_ptr, struct tipc_link *dest);
220 void tipc_link_reset_fragments(struct tipc_link *l_ptr);
221 int tipc_link_is_up(struct tipc_link *l_ptr);
222 int tipc_link_is_active(struct tipc_link *l_ptr);
223 void tipc_link_purge_queues(struct tipc_link *l_ptr);
225 void tipc_link_reset(struct tipc_link *l_ptr);
233 void tipc_link_proto_xmit(struct tipc_link *l_ptr, u32 msg_typ, int prob,
235 void tipc_link_push_packets(struct tipc_link *l_ptr);
237 void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window);
238 void tipc_link_retransmit(struct tipc_link *l_ptr,
291 static inline int link_working_working(struct tipc_link *l_ptr) in link_working_working() argument
293 return l_ptr->state == WORKING_WORKING; in link_working_working()
296 static inline int link_working_unknown(struct tipc_link *l_ptr) in link_working_unknown() argument
298 return l_ptr->state == WORKING_UNKNOWN; in link_working_unknown()
301 static inline int link_reset_unknown(struct tipc_link *l_ptr) in link_reset_unknown() argument
303 return l_ptr->state == RESET_UNKNOWN; in link_reset_unknown()
306 static inline int link_reset_reset(struct tipc_link *l_ptr) in link_reset_reset() argument
308 return l_ptr->state == RESET_RESET; in link_reset_reset()