Home
last modified time | relevance | path

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

/Linux-v6.1/net/tipc/
Dmsg.c516 bool tipc_msg_try_bundle(struct sk_buff *tskb, struct sk_buff **skb, u32 mss, in tipc_msg_try_bundle() argument
534 if (unlikely(!tskb)) in tipc_msg_try_bundle()
538 if (msg_user(buf_msg(tskb)) == MSG_BUNDLER) { in tipc_msg_try_bundle()
544 tsz = msg_size(buf_msg(tskb)); in tipc_msg_try_bundle()
547 if (unlikely(pskb_expand_head(tskb, INT_H_SIZE, mss - tsz - INT_H_SIZE, in tipc_msg_try_bundle()
550 inner = buf_msg(tskb); in tipc_msg_try_bundle()
551 skb_push(tskb, INT_H_SIZE); in tipc_msg_try_bundle()
552 outer = buf_msg(tskb); in tipc_msg_try_bundle()
561 if (likely(tipc_msg_bundle(tskb, msg, mss))) { in tipc_msg_try_bundle()
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()
Dlink.c2922 struct sk_buff *hskb, *tskb; in tipc_link_dump() local
2949 tskb = skb_peek_tail(list); in tipc_link_dump()
2952 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2957 tskb = skb_peek_tail(list); in tipc_link_dump()
2960 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2965 tskb = skb_peek_tail(list); in tipc_link_dump()
2968 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2973 tskb = skb_peek_tail(list); in tipc_link_dump()
2976 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
Dmsg.h1166 bool tipc_msg_try_bundle(struct sk_buff *tskb, struct sk_buff **skb, u32 mss,
/Linux-v6.1/net/kcm/
Dkcmsock.c800 struct sk_buff *tskb; in kcm_sendpage() local
802 tskb = alloc_skb(0, sk->sk_allocation); in kcm_sendpage()
803 while (!tskb) { in kcm_sendpage()
811 skb_shinfo(head)->frag_list = tskb; in kcm_sendpage()
813 skb->next = tskb; in kcm_sendpage()
815 skb = tskb; in kcm_sendpage()
971 struct sk_buff *tskb; in kcm_sendmsg() local
973 tskb = alloc_skb(0, sk->sk_allocation); in kcm_sendmsg()
974 if (!tskb) in kcm_sendmsg()
978 skb_shinfo(head)->frag_list = tskb; in kcm_sendmsg()
[all …]
/Linux-v6.1/drivers/net/ethernet/vertexcom/
Dmse102x.c225 struct sk_buff *tskb; 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()
239 txp = tskb; in mse102x_tx_frame_spi()
/Linux-v6.1/drivers/net/ethernet/qualcomm/
Dqca_spi.c731 struct sk_buff *tskb; in qcaspi_netdev_xmit() local
746 tskb = skb_copy_expand(skb, QCAFRM_HEADER_LEN, in qcaspi_netdev_xmit()
748 if (!tskb) { in qcaspi_netdev_xmit()
753 skb = tskb; in qcaspi_netdev_xmit()
/Linux-v6.1/net/ipv4/
Dtcp_output.c3396 struct sk_buff *skb, *tskb, *tail = tcp_write_queue_tail(sk); in tcp_send_fin() local
3404 tskb = tail; in tcp_send_fin()
3405 if (!tskb && tcp_under_memory_pressure(sk)) in tcp_send_fin()
3406 tskb = skb_rb_last(&sk->tcp_rtx_queue); in tcp_send_fin()
3408 if (tskb) { in tcp_send_fin()
3409 TCP_SKB_CB(tskb)->tcp_flags |= TCPHDR_FIN; in tcp_send_fin()
3410 TCP_SKB_CB(tskb)->end_seq++; in tcp_send_fin()