Home
last modified time | relevance | path

Searched refs:_skb (Results 1 – 6 of 6) sorted by relevance

/net/tipc/
Dmsg.c437 struct sk_buff *_skb; in tipc_msg_make_bundle() local
451 _skb = tipc_buf_acquire(max, GFP_ATOMIC); in tipc_msg_make_bundle()
452 if (!_skb) in tipc_msg_make_bundle()
455 skb_trim(_skb, INT_H_SIZE); in tipc_msg_make_bundle()
456 bmsg = buf_msg(_skb); in tipc_msg_make_bundle()
463 tipc_msg_bundle(_skb, msg, mtu); in tipc_msg_make_bundle()
464 *skb = _skb; in tipc_msg_make_bundle()
478 struct sk_buff *_skb = *skb; in tipc_msg_reverse() local
483 if (skb_linearize(_skb)) in tipc_msg_reverse()
485 hdr = buf_msg(_skb); in tipc_msg_reverse()
[all …]
Dbcast.c166 struct sk_buff *skb, *_skb; in tipc_bcbase_xmit() local
186 _skb = pskb_copy_for_clone(skb, GFP_ATOMIC); in tipc_bcbase_xmit()
187 if (!_skb) in tipc_bcbase_xmit()
189 __skb_queue_tail(&_xmitq, _skb); in tipc_bcbase_xmit()
Dlink.c894 struct sk_buff *skb, *_skb, **tskb; in tipc_link_xmit() local
926 _skb = skb_clone(skb, GFP_ATOMIC); in tipc_link_xmit()
927 if (!_skb) { in tipc_link_xmit()
933 __skb_queue_tail(xmitq, _skb); in tipc_link_xmit()
964 struct sk_buff *skb, *_skb; in tipc_link_advance_backlog() local
975 _skb = skb_clone(skb, GFP_ATOMIC); in tipc_link_advance_backlog()
976 if (!_skb) in tipc_link_advance_backlog()
985 __skb_queue_tail(xmitq, _skb); in tipc_link_advance_backlog()
1012 struct sk_buff *_skb, *skb = skb_peek(&l->transmq); in tipc_link_retrans() local
1042 _skb = __pskb_copy(skb, MIN_H_SIZE, GFP_ATOMIC); in tipc_link_retrans()
[all …]
Dmsg.h897 struct sk_buff *_skb, *tmp, *skb = NULL; in tipc_skb_dequeue() local
900 skb_queue_walk_safe(list, _skb, tmp) { in tipc_skb_dequeue()
901 if (msg_destport(buf_msg(_skb)) == dport) { in tipc_skb_dequeue()
902 __skb_unlink(_skb, list); in tipc_skb_dequeue()
903 skb = _skb; in tipc_skb_dequeue()
Dudp_media.c235 struct sk_buff *_skb; in tipc_udp_send_msg() local
237 _skb = pskb_copy(skb, GFP_ATOMIC); in tipc_udp_send_msg()
238 if (!_skb) { in tipc_udp_send_msg()
243 err = tipc_udp_xmit(net, _skb, ub, src, &rcast->addr); in tipc_udp_send_msg()
Dsocket.c812 struct sk_buff *skb, *_skb; in tipc_sk_mcast_rcv() local
831 _skb = __pskb_copy(skb, hsz, GFP_ATOMIC); in tipc_sk_mcast_rcv()
832 if (_skb) { in tipc_sk_mcast_rcv()
833 msg_set_destport(buf_msg(_skb), portid); in tipc_sk_mcast_rcv()
834 __skb_queue_tail(&tmpq, _skb); in tipc_sk_mcast_rcv()