/Linux-v4.19/net/tipc/ |
D | msg.c | 204 bool tipc_msg_validate(struct sk_buff **_skb) in tipc_msg_validate() argument 206 struct sk_buff *skb = *_skb; in tipc_msg_validate() 215 kfree_skb(*_skb); in tipc_msg_validate() 216 *_skb = skb; in tipc_msg_validate() 465 struct sk_buff *_skb; in tipc_msg_make_bundle() local 479 _skb = tipc_buf_acquire(max, GFP_ATOMIC); in tipc_msg_make_bundle() 480 if (!_skb) in tipc_msg_make_bundle() 483 skb_trim(_skb, INT_H_SIZE); in tipc_msg_make_bundle() 484 bmsg = buf_msg(_skb); in tipc_msg_make_bundle() 494 tipc_msg_bundle(_skb, msg, mtu); in tipc_msg_make_bundle() [all …]
|
D | bcast.c | 170 struct sk_buff *skb, *_skb; in tipc_bcbase_xmit() local 190 _skb = pskb_copy_for_clone(skb, GFP_ATOMIC); in tipc_bcbase_xmit() 191 if (!_skb) in tipc_bcbase_xmit() 193 __skb_queue_tail(&_xmitq, _skb); in tipc_bcbase_xmit()
|
D | msg.h | 950 bool tipc_msg_validate(struct sk_buff **_skb); 1036 struct sk_buff *_skb, *tmp, *skb = NULL; in tipc_skb_dequeue() local 1039 skb_queue_walk_safe(list, _skb, tmp) { in tipc_skb_dequeue() 1040 if (msg_destport(buf_msg(_skb)) == dport) { in tipc_skb_dequeue() 1041 __skb_unlink(_skb, list); in tipc_skb_dequeue() 1042 skb = _skb; in tipc_skb_dequeue()
|
D | link.c | 912 struct sk_buff *skb, *_skb, *bskb; in tipc_link_xmit() local 944 _skb = skb_clone(skb, GFP_ATOMIC); in tipc_link_xmit() 945 if (!_skb) { in tipc_link_xmit() 951 __skb_queue_tail(xmitq, _skb); in tipc_link_xmit() 981 struct sk_buff *skb, *_skb; in tipc_link_advance_backlog() local 991 _skb = skb_clone(skb, GFP_ATOMIC); in tipc_link_advance_backlog() 992 if (!_skb) in tipc_link_advance_backlog() 998 __skb_queue_tail(xmitq, _skb); in tipc_link_advance_backlog() 1032 struct sk_buff *_skb, *skb = skb_peek(&l->transmq); in tipc_link_retrans() local 1058 _skb = __pskb_copy(skb, MIN_H_SIZE, GFP_ATOMIC); in tipc_link_retrans() [all …]
|
D | udp_media.c | 239 struct sk_buff *_skb; in tipc_udp_send_msg() local 241 _skb = pskb_copy(skb, GFP_ATOMIC); in tipc_udp_send_msg() 242 if (!_skb) { in tipc_udp_send_msg() 247 err = tipc_udp_xmit(net, _skb, ub, src, &rcast->addr); in tipc_udp_send_msg() 249 kfree_skb(_skb); in tipc_udp_send_msg()
|
D | group.c | 468 struct sk_buff *_skb, *tmp; in tipc_group_sort_msg() local 473 skb_queue_walk_safe(defq, _skb, tmp) { in tipc_group_sort_msg() 474 _hdr = buf_msg(_skb); in tipc_group_sort_msg() 477 __skb_queue_before(defq, _skb, skb); in tipc_group_sort_msg()
|
D | socket.c | 1118 struct sk_buff *skb, *_skb; in tipc_sk_mcast_rcv() local 1172 _skb = __pskb_copy(skb, hlen, GFP_ATOMIC); in tipc_sk_mcast_rcv() 1173 if (_skb) { in tipc_sk_mcast_rcv() 1174 msg_set_destport(buf_msg(_skb), portid); in tipc_sk_mcast_rcv() 1175 __skb_queue_tail(&tmpq, _skb); in tipc_sk_mcast_rcv()
|
/Linux-v4.19/drivers/net/wireless/realtek/rtlwifi/ |
D | usb.c | 535 struct sk_buff *_skb; in _rtl_rx_pre_process() local 544 _skb = skb_dequeue(&rx_queue); in _rtl_rx_pre_process() 545 _rtl_usb_rx_process_agg(hw, _skb); in _rtl_rx_pre_process() 546 ieee80211_rx(hw, _skb); in _rtl_rx_pre_process() 785 struct sk_buff *_skb; in rtl_usb_cleanup() local 794 while ((_skb = skb_dequeue(&rtlusb->tx_skb_queue[i]))) { in rtl_usb_cleanup() 795 rtlusb->usb_tx_cleanup(hw, _skb); in rtl_usb_cleanup() 796 txinfo = IEEE80211_SKB_CB(_skb); in rtl_usb_cleanup() 799 ieee80211_tx_status_irqsafe(hw, _skb); in rtl_usb_cleanup() 930 struct sk_buff *_skb = NULL; in _rtl_usb_transmit() local [all …]
|
/Linux-v4.19/drivers/net/ipvlan/ |
D | ipvlan.h | 111 #define IPVL_SKB_CB(_skb) ((struct ipvl_skb_cb *)&((_skb)->cb[0])) argument
|