/linux-6.1.9/net/tipc/ |
D | link.h | 90 int mtyp, struct sk_buff_head *xmitq); 92 struct sk_buff_head *xmitq); 94 struct sk_buff_head *xmitq); 95 void tipc_link_build_reset_msg(struct tipc_link *l, struct sk_buff_head *xmitq); 108 struct sk_buff_head *xmitq); 123 struct sk_buff_head *xmitq); 125 struct sk_buff_head *xmitq); 131 int tipc_link_timeout(struct tipc_link *l, struct sk_buff_head *xmitq); 133 struct sk_buff_head *xmitq); 134 int tipc_link_build_state_msg(struct tipc_link *l, struct sk_buff_head *xmitq); [all …]
|
D | bcast.c | 177 static void tipc_bcbase_xmit(struct net *net, struct sk_buff_head *xmitq) in tipc_bcbase_xmit() argument 184 if (skb_queue_empty(xmitq)) in tipc_bcbase_xmit() 190 tipc_bearer_bc_xmit(net, bearer_id, xmitq); in tipc_bcbase_xmit() 200 skb_queue_walk(xmitq, skb) { in tipc_bcbase_xmit() 208 __skb_queue_purge(xmitq); in tipc_bcbase_xmit() 263 struct sk_buff_head xmitq; in tipc_bcast_xmit() local 266 __skb_queue_head_init(&xmitq); in tipc_bcast_xmit() 269 rc = tipc_link_xmit(l, pkts, &xmitq); in tipc_bcast_xmit() 271 tipc_bcbase_xmit(net, &xmitq); in tipc_bcast_xmit() 440 struct sk_buff_head xmitq; in tipc_bcast_rcv() local [all …]
|
D | group.c | 103 int mtyp, struct sk_buff_head *xmitq); 201 struct sk_buff_head xmitq; in tipc_group_join() local 203 __skb_queue_head_init(&xmitq); in tipc_group_join() 205 tipc_group_proto_xmit(grp, m, GRP_JOIN_MSG, &xmitq); in tipc_group_join() 208 tipc_node_distr_xmit(net, &xmitq); in tipc_group_join() 216 struct sk_buff_head xmitq; in tipc_group_delete() local 218 __skb_queue_head_init(&xmitq); in tipc_group_delete() 221 tipc_group_proto_xmit(grp, m, GRP_LEAVE_MSG, &xmitq); in tipc_group_delete() 226 tipc_node_distr_xmit(net, &xmitq); in tipc_group_delete() 420 struct sk_buff_head xmitq; in tipc_group_cong() local [all …]
|
D | group.h | 59 struct sk_buff_head *xmitq); 63 struct sk_buff_head *xmitq); 67 struct sk_buff_head *xmitq); 73 u32 port, struct sk_buff_head *xmitq);
|
D | node.c | 177 struct sk_buff_head *xmitq, 807 struct sk_buff_head xmitq; in tipc_node_timeout() local 823 __skb_queue_head_init(&xmitq); in tipc_node_timeout() 838 rc = tipc_link_timeout(le->link, &xmitq); in tipc_node_timeout() 843 tipc_bearer_xmit(n->net, bearer_id, &xmitq, &le->maddr, n); in tipc_node_timeout() 859 struct sk_buff_head *xmitq) in __tipc_node_link_up() argument 888 tipc_link_build_state_msg(nl, xmitq); in __tipc_node_link_up() 897 tipc_bcast_add_peer(n->net, nl, xmitq); in __tipc_node_link_up() 916 tipc_link_tnl_prepare(ol, nl, SYNCH_MSG, xmitq); in __tipc_node_link_up() 928 struct sk_buff_head *xmitq) in tipc_node_link_up() argument [all …]
|
D | link.c | 267 struct sk_buff_head *xmitq); 271 struct sk_buff_head *xmitq); 274 struct sk_buff_head *xmitq); 276 struct sk_buff_head *xmitq); 283 struct sk_buff_head *xmitq, 387 struct sk_buff_head *xmitq) in tipc_link_add_bc_peer() argument 394 tipc_link_build_bc_init_msg(uc_l, xmitq); in tipc_link_add_bc_peer() 399 struct sk_buff_head *xmitq) in tipc_link_remove_bc_peer() argument 406 tipc_link_bc_ack_rcv(rcv_l, ack, 0, NULL, xmitq, NULL); in tipc_link_remove_bc_peer() 414 __skb_queue_purge(xmitq); in tipc_link_remove_bc_peer() [all …]
|
D | socket.c | 1330 struct sk_buff_head *xmitq) in tipc_sk_conn_proto_rcv() argument 1366 __skb_queue_tail(xmitq, skb); in tipc_sk_conn_proto_rcv() 1893 struct sk_buff_head xmitq; in tipc_recvmsg() local 1978 __skb_queue_head_init(&xmitq); in tipc_recvmsg() 1981 &xmitq); in tipc_recvmsg() 1982 tipc_node_distr_xmit(sock_net(sk), &xmitq); in tipc_recvmsg() 2148 struct sk_buff_head *xmitq) in tipc_sk_proto_rcv() argument 2158 tipc_sk_conn_proto_rcv(tsk, skb, inputq, xmitq); in tipc_sk_proto_rcv() 2169 tipc_group_proto_rcv(grp, &wakeup, hdr, inputq, xmitq); in tipc_sk_proto_rcv() 2173 hdr, inputq, xmitq); in tipc_sk_proto_rcv() [all …]
|
D | bearer.c | 570 struct sk_buff_head *xmitq, in tipc_bearer_xmit() argument 577 if (skb_queue_empty(xmitq)) in tipc_bearer_xmit() 583 __skb_queue_purge(xmitq); in tipc_bearer_xmit() 584 skb_queue_walk_safe(xmitq, skb, tmp) { in tipc_bearer_xmit() 585 __skb_dequeue(xmitq); in tipc_bearer_xmit() 602 struct sk_buff_head *xmitq) in tipc_bearer_bc_xmit() argument 614 __skb_queue_purge(xmitq); in tipc_bearer_bc_xmit() 615 skb_queue_walk_safe(xmitq, skb, tmp) { in tipc_bearer_bc_xmit() 619 __skb_dequeue(xmitq); in tipc_bearer_bc_xmit()
|
D | bearer.h | 240 struct sk_buff_head *xmitq, 244 struct sk_buff_head *xmitq);
|
D | bcast.h | 84 struct sk_buff_head *xmitq);
|
D | msg.c | 847 struct sk_buff_head *xmitq) in tipc_skb_reject() argument 850 __skb_queue_tail(xmitq, skb); in tipc_skb_reject()
|
D | msg.h | 1159 struct sk_buff_head *xmitq);
|