Lines Matching refs:tx_skb
1869 struct sk_buff *skb, *tx_skb; in l2cap_ertm_send() local
1910 tx_skb = skb_clone(skb, GFP_KERNEL); in l2cap_ertm_send()
1912 if (!tx_skb) in l2cap_ertm_send()
1927 l2cap_do_send(chan, tx_skb); in l2cap_ertm_send()
1941 struct sk_buff *tx_skb; in l2cap_ertm_resend() local
1983 tx_skb = skb_copy(skb, GFP_KERNEL); in l2cap_ertm_resend()
1985 tx_skb = skb_clone(skb, GFP_KERNEL); in l2cap_ertm_resend()
1988 if (!tx_skb) { in l2cap_ertm_resend()
1996 tx_skb->data + L2CAP_HDR_SIZE); in l2cap_ertm_resend()
1999 tx_skb->data + L2CAP_HDR_SIZE); in l2cap_ertm_resend()
2004 u16 fcs = crc16(0, (u8 *) tx_skb->data, in l2cap_ertm_resend()
2005 tx_skb->len - L2CAP_FCS_SIZE); in l2cap_ertm_resend()
2006 put_unaligned_le16(fcs, skb_tail_pointer(tx_skb) - in l2cap_ertm_resend()
2010 l2cap_do_send(chan, tx_skb); in l2cap_ertm_resend()