Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/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.c2886 struct sk_buff *hskb, *tskb; in tipc_link_dump() local
2913 tskb = skb_peek_tail(list); in tipc_link_dump()
2916 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2921 tskb = skb_peek_tail(list); in tipc_link_dump()
2924 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2929 tskb = skb_peek_tail(list); in tipc_link_dump()
2932 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2937 tskb = skb_peek_tail(list); in tipc_link_dump()
2940 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
H A Dmsg.h1189 bool tipc_msg_try_bundle(struct sk_buff *tskb, struct sk_buff **skb, u32 mss,
/OK3568_Linux_fs/kernel/net/kcm/
H A Dkcmsock.c799 struct sk_buff *tskb; in kcm_sendpage() local
801 tskb = alloc_skb(0, sk->sk_allocation); in kcm_sendpage()
802 while (!tskb) { in kcm_sendpage()
810 skb_shinfo(head)->frag_list = tskb; in kcm_sendpage()
812 skb->next = tskb; in kcm_sendpage()
814 skb = tskb; in kcm_sendpage()
970 struct sk_buff *tskb; in kcm_sendmsg() local
972 tskb = alloc_skb(0, sk->sk_allocation); in kcm_sendmsg()
973 if (!tskb) in kcm_sendmsg()
977 skb_shinfo(head)->frag_list = tskb; in kcm_sendmsg()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/qualcomm/
H A 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()
/OK3568_Linux_fs/kernel/net/ipv4/
H A Dtcp_output.c3398 struct sk_buff *skb, *tskb, *tail = tcp_write_queue_tail(sk); in tcp_send_fin() local
3406 tskb = tail; in tcp_send_fin()
3407 if (!tskb && tcp_under_memory_pressure(sk)) in tcp_send_fin()
3408 tskb = skb_rb_last(&sk->tcp_rtx_queue); in tcp_send_fin()
3410 if (tskb) { in tcp_send_fin()
3411 TCP_SKB_CB(tskb)->tcp_flags |= TCPHDR_FIN; in tcp_send_fin()
3412 TCP_SKB_CB(tskb)->end_seq++; in tcp_send_fin()