Lines Matching refs:tx_skb
1961 struct sk_buff *skb, *tx_skb; in l2cap_ertm_send() local
1999 tx_skb = skb_clone(skb, GFP_KERNEL); in l2cap_ertm_send()
2001 if (!tx_skb) in l2cap_ertm_send()
2016 l2cap_do_send(chan, tx_skb); in l2cap_ertm_send()
2030 struct sk_buff *tx_skb; in l2cap_ertm_resend() local
2069 tx_skb = skb_copy(skb, GFP_KERNEL); in l2cap_ertm_resend()
2071 tx_skb = skb_clone(skb, GFP_KERNEL); in l2cap_ertm_resend()
2074 if (!tx_skb) { in l2cap_ertm_resend()
2082 tx_skb->data + L2CAP_HDR_SIZE); in l2cap_ertm_resend()
2085 tx_skb->data + L2CAP_HDR_SIZE); in l2cap_ertm_resend()
2090 u16 fcs = crc16(0, (u8 *) tx_skb->data, in l2cap_ertm_resend()
2091 tx_skb->len - L2CAP_FCS_SIZE); in l2cap_ertm_resend()
2092 put_unaligned_le16(fcs, skb_tail_pointer(tx_skb) - in l2cap_ertm_resend()
2096 l2cap_do_send(chan, tx_skb); in l2cap_ertm_resend()