Searched refs:l_ptr (Results 1 – 4 of 4) sorted by relevance
/linux-4.1.27/net/tipc/ |
D | link.c | 100 static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tol); 101 static void link_state_event(struct tipc_link *l_ptr, u32 event); 102 static void link_reset_statistics(struct tipc_link *l_ptr); 103 static void link_print(struct tipc_link *l_ptr, const char *str); 122 static void tipc_link_get(struct tipc_link *l_ptr) in tipc_link_get() argument 124 kref_get(&l_ptr->ref); in tipc_link_get() 127 static void tipc_link_put(struct tipc_link *l_ptr) in tipc_link_put() argument 129 kref_put(&l_ptr->ref, tipc_link_release); in tipc_link_put() 142 int tipc_link_is_up(struct tipc_link *l_ptr) in tipc_link_is_up() argument 144 if (!l_ptr) in tipc_link_is_up() [all …]
|
D | node.c | 226 void tipc_node_link_up(struct tipc_node *n_ptr, struct tipc_link *l_ptr) in tipc_node_link_up() argument 232 n_ptr->link_id = l_ptr->peer_bearer_id << 16 | l_ptr->bearer_id; in tipc_node_link_up() 235 l_ptr->name, l_ptr->net_plane); in tipc_node_link_up() 238 active[0] = active[1] = l_ptr; in tipc_node_link_up() 242 if (l_ptr->priority < active[0]->priority) { in tipc_node_link_up() 243 pr_debug("New link <%s> becomes standby\n", l_ptr->name); in tipc_node_link_up() 246 tipc_link_dup_queue_xmit(active[0], l_ptr); in tipc_node_link_up() 247 if (l_ptr->priority == active[0]->priority) { in tipc_node_link_up() 248 active[0] = l_ptr; in tipc_node_link_up() 254 active[0] = active[1] = l_ptr; in tipc_node_link_up() [all …]
|
D | link.h | 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); [all …]
|
D | node.h | 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);
|