Lines Matching refs:tx_skb
1873 struct sk_buff *skb, *tx_skb; in l2cap_ertm_send() local
1914 tx_skb = skb_clone(skb, GFP_KERNEL); in l2cap_ertm_send()
1916 if (!tx_skb) in l2cap_ertm_send()
1931 l2cap_do_send(chan, tx_skb); in l2cap_ertm_send()
1945 struct sk_buff *tx_skb; in l2cap_ertm_resend() local
1987 tx_skb = skb_copy(skb, GFP_KERNEL); in l2cap_ertm_resend()
1989 tx_skb = skb_clone(skb, GFP_KERNEL); in l2cap_ertm_resend()
1992 if (!tx_skb) { in l2cap_ertm_resend()
2000 tx_skb->data + L2CAP_HDR_SIZE); in l2cap_ertm_resend()
2003 tx_skb->data + L2CAP_HDR_SIZE); in l2cap_ertm_resend()
2008 u16 fcs = crc16(0, (u8 *) tx_skb->data, in l2cap_ertm_resend()
2009 tx_skb->len - L2CAP_FCS_SIZE); in l2cap_ertm_resend()
2010 put_unaligned_le16(fcs, skb_tail_pointer(tx_skb) - in l2cap_ertm_resend()
2014 l2cap_do_send(chan, tx_skb); in l2cap_ertm_resend()