Lines Matching refs:_skb
435 struct sk_buff *_skb; in tipc_msg_make_bundle() local
449 _skb = tipc_buf_acquire(max); in tipc_msg_make_bundle()
450 if (!_skb) in tipc_msg_make_bundle()
453 skb_trim(_skb, INT_H_SIZE); in tipc_msg_make_bundle()
454 bmsg = buf_msg(_skb); in tipc_msg_make_bundle()
464 tipc_msg_bundle(_skb, msg, mtu); in tipc_msg_make_bundle()
465 *skb = _skb; in tipc_msg_make_bundle()
479 struct sk_buff *_skb = *skb; in tipc_msg_reverse() local
480 struct tipc_msg *hdr = buf_msg(_skb); in tipc_msg_reverse()
484 if (skb_linearize(_skb)) in tipc_msg_reverse()
486 hdr = buf_msg(_skb); in tipc_msg_reverse()
501 kfree_skb(_skb); in tipc_msg_reverse()
502 _skb = *skb; in tipc_msg_reverse()
503 hdr = buf_msg(_skb); in tipc_msg_reverse()
516 skb_trim(_skb, msg_size(hdr)); in tipc_msg_reverse()
517 skb_orphan(_skb); in tipc_msg_reverse()
520 kfree_skb(_skb); in tipc_msg_reverse()
569 struct sk_buff *skb, *_skb; in tipc_msg_reassemble() local
578 _skb = __pskb_copy(skb, hdr_len, GFP_ATOMIC); in tipc_msg_reassemble()
579 if (!_skb) in tipc_msg_reassemble()
581 __skb_queue_tail(rcvq, _skb); in tipc_msg_reassemble()
612 struct sk_buff *_skb, *tmp; in __tipc_skb_queue_sorted() local
624 skb_queue_walk_safe(list, _skb, tmp) { in __tipc_skb_queue_sorted()
625 if (more(seqno, buf_seqno(_skb))) in __tipc_skb_queue_sorted()
627 if (seqno == buf_seqno(_skb)) in __tipc_skb_queue_sorted()
629 __skb_queue_before(list, _skb, skb); in __tipc_skb_queue_sorted()