Searched refs:bclink (Results 1 – 4 of 4) sorted by relevance
/linux-3.4.99/net/tipc/ |
D | bcast.c | 107 static struct tipc_bclink *bclink = &bcast_link; variable 136 tipc_nmap_add(&bclink->bcast_nodes, addr); in tipc_bclink_add_node() 143 tipc_nmap_remove(&bclink->bcast_nodes, addr); in tipc_bclink_remove_node() 162 node->bclink.last_sent = less_eq(node->bclink.last_sent, seqno) ? in bclink_update_last_sent() 163 seqno : node->bclink.last_sent; in bclink_update_last_sent() 175 return bclink->retransmit_to; in tipc_bclink_retransmit_to() 224 if (bclink->bcast_nodes.count) in tipc_bclink_acknowledge() 235 less_eq(acked, n_ptr->bclink.acked)) in tipc_bclink_acknowledge() 240 while (crs && less_eq(buf_seqno(crs), n_ptr->bclink.acked)) in tipc_bclink_acknowledge() 264 n_ptr->bclink.acked = acked; in tipc_bclink_acknowledge() [all …]
|
D | node.c | 273 if (n_ptr->bclink.supportable) { in node_established_contact() 274 n_ptr->bclink.acked = tipc_bclink_get_last_sent(); in node_established_contact() 276 n_ptr->bclink.supported = 1; in node_established_contact() 304 if (n_ptr->bclink.supported) { in node_lost_contact() 305 while (n_ptr->bclink.deferred_head) { in node_lost_contact() 306 struct sk_buff *buf = n_ptr->bclink.deferred_head; in node_lost_contact() 307 n_ptr->bclink.deferred_head = buf->next; in node_lost_contact() 310 n_ptr->bclink.deferred_size = 0; in node_lost_contact() 312 if (n_ptr->bclink.defragm) { in node_lost_contact() 313 kfree_skb(n_ptr->bclink.defragm); in node_lost_contact() [all …]
|
D | link.c | 826 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in); in link_add_to_outqueue() 1371 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in); in tipc_link_push_packet() 1388 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in); in tipc_link_push_packet() 1410 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in); in tipc_link_push_packet() 1503 info("Supportable: %d, ", n_ptr->bclink.supportable); in link_retransmit_failure() 1504 info("Supported: %d, ", n_ptr->bclink.supported); in link_retransmit_failure() 1505 info("Acked: %u\n", n_ptr->bclink.acked); in link_retransmit_failure() 1506 info("Last in: %u, ", n_ptr->bclink.last_in); in link_retransmit_failure() 1507 info("Oos state: %u, ", n_ptr->bclink.oos_state); in link_retransmit_failure() 1508 info("Last sent: %u\n", n_ptr->bclink.last_sent); in link_retransmit_failure() [all …]
|
D | node.h | 107 } bclink; member
|