Home
last modified time | relevance | path

Searched refs:tskb (Results 1 – 8 of 8) sorted by relevance

/linux/net/tipc/
H A Dmsg.c520 bool tipc_msg_try_bundle(struct sk_buff *tskb, struct sk_buff **skb, u32 mss, in tipc_msg_try_bundle() argument
538 if (unlikely(!tskb)) in tipc_msg_try_bundle()
542 if (msg_user(buf_msg(tskb)) == MSG_BUNDLER) { in tipc_msg_try_bundle()
548 tsz = msg_size(buf_msg(tskb)); in tipc_msg_try_bundle()
551 if (unlikely(pskb_expand_head(tskb, INT_H_SIZE, mss - tsz - INT_H_SIZE, in tipc_msg_try_bundle()
554 inner = buf_msg(tskb); in tipc_msg_try_bundle()
555 skb_push(tskb, INT_H_SIZE); in tipc_msg_try_bundle()
556 outer = buf_msg(tskb); in tipc_msg_try_bundle()
565 if (likely(tipc_msg_bundle(tskb, msg, mss))) { in tipc_msg_try_bundle()
H A Dtrace.c171 struct sk_buff *hskb, *tskb, *skb, *tmp; in tipc_list_dump() local
189 tskb = skb_peek_tail(list); in tipc_list_dump()
191 i += tipc_skb_dump(tskb, false, buf + i); in tipc_list_dump()
H A Dlink.c2903 struct sk_buff *hskb, *tskb; in tipc_link_dump() local
2930 tskb = skb_peek_tail(list); in tipc_link_dump()
2933 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2938 tskb = skb_peek_tail(list); in tipc_link_dump()
2941 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2946 tskb = skb_peek_tail(list); in tipc_link_dump()
2949 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2954 tskb = skb_peek_tail(list); in tipc_link_dump()
2957 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
H A Dmsg.h1166 bool tipc_msg_try_bundle(struct sk_buff *tskb, struct sk_buff **skb, u32 mss,
/linux/drivers/net/ethernet/vertexcom/
H A Dmse102x.c225 struct sk_buff *tskb = NULL; in mse102x_tx_frame_spi() local
233 tskb = skb_copy_expand(txp, DET_SOF_LEN, DET_DFT_LEN + pad, in mse102x_tx_frame_spi()
235 if (!tskb) in mse102x_tx_frame_spi()
238 txp = tskb; in mse102x_tx_frame_spi()
259 dev_kfree_skb(tskb); in mse102x_tx_frame_spi()
/linux/drivers/net/ethernet/qualcomm/
H A Dqca_spi.c737 struct sk_buff *tskb; in qcaspi_netdev_xmit() local
752 tskb = skb_copy_expand(skb, QCAFRM_HEADER_LEN, in qcaspi_netdev_xmit()
754 if (!tskb) { in qcaspi_netdev_xmit()
759 skb = tskb; in qcaspi_netdev_xmit()
/linux/net/kcm/
H A Dkcmsock.c815 struct sk_buff *tskb; in kcm_sendmsg() local
817 tskb = alloc_skb(0, sk->sk_allocation); in kcm_sendmsg()
818 if (!tskb) in kcm_sendmsg()
822 skb_shinfo(head)->frag_list = tskb; in kcm_sendmsg()
824 skb->next = tskb; in kcm_sendmsg()
826 skb = tskb; in kcm_sendmsg()
/linux/net/ipv4/
H A Dtcp_output.c3580 struct sk_buff *skb, *tskb, *tail = tcp_write_queue_tail(sk); in tcp_send_fin() local
3588 tskb = tail; in tcp_send_fin()
3589 if (!tskb && tcp_under_memory_pressure(sk)) in tcp_send_fin()
3590 tskb = skb_rb_last(&sk->tcp_rtx_queue); in tcp_send_fin()
3592 if (tskb) { in tcp_send_fin()
3593 TCP_SKB_CB(tskb)->tcp_flags |= TCPHDR_FIN; in tcp_send_fin()
3594 TCP_SKB_CB(tskb)->end_seq++; in tcp_send_fin()