Lines Matching refs:tx_skb
1962 struct sk_buff *skb, *tx_skb; in l2cap_ertm_send() local
2000 tx_skb = skb_clone(skb, GFP_KERNEL); in l2cap_ertm_send()
2002 if (!tx_skb) in l2cap_ertm_send()
2017 l2cap_do_send(chan, tx_skb); in l2cap_ertm_send()
2031 struct sk_buff *tx_skb; in l2cap_ertm_resend() local
2070 tx_skb = skb_copy(skb, GFP_KERNEL); in l2cap_ertm_resend()
2072 tx_skb = skb_clone(skb, GFP_KERNEL); in l2cap_ertm_resend()
2075 if (!tx_skb) { in l2cap_ertm_resend()
2083 tx_skb->data + L2CAP_HDR_SIZE); in l2cap_ertm_resend()
2086 tx_skb->data + L2CAP_HDR_SIZE); in l2cap_ertm_resend()
2091 u16 fcs = crc16(0, (u8 *) tx_skb->data, in l2cap_ertm_resend()
2092 tx_skb->len - L2CAP_FCS_SIZE); in l2cap_ertm_resend()
2093 put_unaligned_le16(fcs, skb_tail_pointer(tx_skb) - in l2cap_ertm_resend()
2097 l2cap_do_send(chan, tx_skb); in l2cap_ertm_resend()