Home
last modified time | relevance | path

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

/Linux-v5.4/net/tipc/
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.c951 struct sk_buff *skb, *_skb, **tskb; in tipc_link_xmit() local
1003 tskb = &l->backlog[imp].target_bskb; in tipc_link_xmit()
1004 if (tipc_msg_bundle(*tskb, hdr, mtu)) { in tipc_link_xmit()
1009 if (tipc_msg_make_bundle(tskb, hdr, mtu, l->addr)) { in tipc_link_xmit()
1011 __skb_queue_tail(backlogq, *tskb); in tipc_link_xmit()
2683 struct sk_buff *hskb, *tskb; in tipc_link_dump() local
2710 tskb = skb_peek_tail(list); in tipc_link_dump()
2713 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2718 tskb = skb_peek_tail(list); in tipc_link_dump()
2721 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
[all …]
/Linux-v5.4/net/kcm/
Dkcmsock.c796 struct sk_buff *tskb; in kcm_sendpage() local
798 tskb = alloc_skb(0, sk->sk_allocation); in kcm_sendpage()
799 while (!tskb) { in kcm_sendpage()
807 skb_shinfo(head)->frag_list = tskb; in kcm_sendpage()
809 skb->next = tskb; in kcm_sendpage()
811 skb = tskb; in kcm_sendpage()
967 struct sk_buff *tskb; in kcm_sendmsg() local
969 tskb = alloc_skb(0, sk->sk_allocation); in kcm_sendmsg()
970 if (!tskb) in kcm_sendmsg()
974 skb_shinfo(head)->frag_list = tskb; in kcm_sendmsg()
[all …]
/Linux-v5.4/drivers/net/ethernet/qualcomm/
Dqca_spi.c724 struct sk_buff *tskb; in qcaspi_netdev_xmit() local
739 tskb = skb_copy_expand(skb, QCAFRM_HEADER_LEN, in qcaspi_netdev_xmit()
741 if (!tskb) { in qcaspi_netdev_xmit()
746 skb = tskb; in qcaspi_netdev_xmit()
/Linux-v5.4/net/ipv4/
Dtcp_output.c3123 struct sk_buff *skb, *tskb = tcp_write_queue_tail(sk); in tcp_send_fin() local
3131 if (!tskb && tcp_under_memory_pressure(sk)) in tcp_send_fin()
3132 tskb = skb_rb_last(&sk->tcp_rtx_queue); in tcp_send_fin()
3134 if (tskb) { in tcp_send_fin()
3135 TCP_SKB_CB(tskb)->tcp_flags |= TCPHDR_FIN; in tcp_send_fin()
3136 TCP_SKB_CB(tskb)->end_seq++; in tcp_send_fin()