Home
last modified time | relevance | path

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

/Linux-v5.4/net/tipc/
Dmsg.c204 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()
262 struct sk_buff *_skb; in tipc_msg_fragment() local
282 _skb = tipc_buf_acquire(INT_H_SIZE + eat, GFP_ATOMIC); in tipc_msg_fragment()
283 if (!_skb) in tipc_msg_fragment()
285 skb_orphan(_skb); in tipc_msg_fragment()
286 __skb_queue_tail(frags, _skb); in tipc_msg_fragment()
288 skb_copy_to_linear_data(_skb, hdr, INT_H_SIZE); in tipc_msg_fragment()
[all …]
Dbcast.c174 struct sk_buff *skb, *_skb; in tipc_bcbase_xmit() local
194 _skb = pskb_copy_for_clone(skb, GFP_ATOMIC); in tipc_bcbase_xmit()
195 if (!_skb) in tipc_bcbase_xmit()
197 __skb_queue_tail(&_xmitq, _skb); in tipc_bcbase_xmit()
318 struct sk_buff *_skb; in tipc_mcast_send_sync() local
331 _skb = tipc_buf_acquire(MCAST_H_SIZE, GFP_KERNEL); in tipc_mcast_send_sync()
332 if (!_skb) in tipc_mcast_send_sync()
339 skb_copy_to_linear_data(_skb, hdr, MCAST_H_SIZE); in tipc_mcast_send_sync()
340 skb_orphan(_skb); in tipc_mcast_send_sync()
343 _hdr = buf_msg(_skb); in tipc_mcast_send_sync()
[all …]
Dlink.c951 struct sk_buff *skb, *_skb, **tskb; in tipc_link_xmit() local
986 _skb = skb_clone(skb, GFP_ATOMIC); in tipc_link_xmit()
987 if (!_skb) { in tipc_link_xmit()
996 __skb_queue_tail(xmitq, _skb); in tipc_link_xmit()
1028 struct sk_buff *skb, *_skb; in tipc_link_advance_backlog() local
1039 _skb = skb_clone(skb, GFP_ATOMIC); in tipc_link_advance_backlog()
1040 if (!_skb) in tipc_link_advance_backlog()
1053 __skb_queue_tail(xmitq, _skb); in tipc_link_advance_backlog()
1128 struct sk_buff *_skb, *skb = skb_peek(&l->transmq); in tipc_link_bc_retrans() local
1154 _skb = __pskb_copy(skb, LL_MAX_HEADER + MIN_H_SIZE, GFP_ATOMIC); in tipc_link_bc_retrans()
[all …]
Dmsg.h1050 bool tipc_msg_validate(struct sk_buff **_skb);
1139 struct sk_buff *_skb, *tmp, *skb = NULL; in tipc_skb_dequeue() local
1142 skb_queue_walk_safe(list, _skb, tmp) { in tipc_skb_dequeue()
1143 if (msg_destport(buf_msg(_skb)) == dport) { in tipc_skb_dequeue()
1144 __skb_unlink(_skb, list); in tipc_skb_dequeue()
1145 skb = _skb; in tipc_skb_dequeue()
Dudp_media.c246 struct sk_buff *_skb; in tipc_udp_send_msg() local
248 _skb = pskb_copy(skb, GFP_ATOMIC); in tipc_udp_send_msg()
249 if (!_skb) { in tipc_udp_send_msg()
254 err = tipc_udp_xmit(net, _skb, ub, src, &rcast->addr, in tipc_udp_send_msg()
Dgroup.c469 struct sk_buff *_skb, *tmp; in tipc_group_sort_msg() local
474 skb_queue_walk_safe(defq, _skb, tmp) { in tipc_group_sort_msg()
475 _hdr = buf_msg(_skb); in tipc_group_sort_msg()
478 __skb_queue_before(defq, _skb, skb); in tipc_group_sort_msg()
Dbearer.c685 struct sk_buff *skb, *_skb; in tipc_clone_to_loopback() local
688 skb_queue_walk(pkts, _skb) { in tipc_clone_to_loopback()
689 skb = pskb_copy(_skb, GFP_ATOMIC); in tipc_clone_to_loopback()
Dsocket.c1136 struct sk_buff *skb, *_skb; in tipc_sk_mcast_rcv() local
1190 _skb = __pskb_copy(skb, hlen, GFP_ATOMIC); in tipc_sk_mcast_rcv()
1191 if (_skb) { in tipc_sk_mcast_rcv()
1192 msg_set_destport(buf_msg(_skb), portid); in tipc_sk_mcast_rcv()
1193 __skb_queue_tail(&tmpq, _skb); in tipc_sk_mcast_rcv()
/Linux-v5.4/drivers/net/wireless/realtek/rtlwifi/
Dusb.c514 struct sk_buff *_skb; in _rtl_rx_pre_process() local
523 _skb = skb_dequeue(&rx_queue); in _rtl_rx_pre_process()
524 _rtl_usb_rx_process_agg(hw, _skb); in _rtl_rx_pre_process()
525 ieee80211_rx(hw, _skb); in _rtl_rx_pre_process()
760 struct sk_buff *_skb; in rtl_usb_cleanup() local
769 while ((_skb = skb_dequeue(&rtlusb->tx_skb_queue[i]))) { in rtl_usb_cleanup()
770 rtlusb->usb_tx_cleanup(hw, _skb); in rtl_usb_cleanup()
771 txinfo = IEEE80211_SKB_CB(_skb); in rtl_usb_cleanup()
774 ieee80211_tx_status_irqsafe(hw, _skb); in rtl_usb_cleanup()
901 struct sk_buff *_skb = NULL; in _rtl_usb_transmit() local
[all …]
/Linux-v5.4/drivers/net/ipvlan/
Dipvlan.h106 #define IPVL_SKB_CB(_skb) ((struct ipvl_skb_cb *)&((_skb)->cb[0])) argument