Lines Matching refs:snd_l
186 void tipc_link_add_bc_peer(struct tipc_link *snd_l, in tipc_link_add_bc_peer() argument
192 snd_l->ackers++; in tipc_link_add_bc_peer()
193 rcv_l->acked = snd_l->snd_nxt - 1; in tipc_link_add_bc_peer()
194 snd_l->state = LINK_ESTABLISHED; in tipc_link_add_bc_peer()
198 void tipc_link_remove_bc_peer(struct tipc_link *snd_l, in tipc_link_remove_bc_peer() argument
202 u16 ack = snd_l->snd_nxt - 1; in tipc_link_remove_bc_peer()
204 snd_l->ackers--; in tipc_link_remove_bc_peer()
208 if (!snd_l->ackers) { in tipc_link_remove_bc_peer()
209 tipc_link_reset(snd_l); in tipc_link_remove_bc_peer()
210 snd_l->state = LINK_RESET; in tipc_link_remove_bc_peer()
1453 struct tipc_link *snd_l = l->bc_sndlink; in tipc_link_bc_ack_rcv() local
1462 skb_queue_walk(&snd_l->transmq, skb) { in tipc_link_bc_ack_rcv()
1468 skb_queue_walk_from_safe(&snd_l->transmq, skb, tmp) { in tipc_link_bc_ack_rcv()
1472 __skb_unlink(skb, &snd_l->transmq); in tipc_link_bc_ack_rcv()
1477 tipc_link_advance_backlog(snd_l, xmitq); in tipc_link_bc_ack_rcv()
1478 if (unlikely(!skb_queue_empty(&snd_l->wakeupq))) in tipc_link_bc_ack_rcv()
1479 link_prepare_wakeup(snd_l); in tipc_link_bc_ack_rcv()