Searched refs:tskb (Results 1 – 8 of 8) sorted by relevance
/openbmc/linux/net/tipc/ |
H A D | msg.c | 520 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 D | trace.c | 171 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 D | link.c | 2925 struct sk_buff *hskb, *tskb; in tipc_link_dump() local 2952 tskb = skb_peek_tail(list); in tipc_link_dump() 2955 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump() 2960 tskb = skb_peek_tail(list); in tipc_link_dump() 2963 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump() 2968 tskb = skb_peek_tail(list); in tipc_link_dump() 2971 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump() 2976 tskb = skb_peek_tail(list); in tipc_link_dump() 2979 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
|
H A D | msg.h | 1166 bool tipc_msg_try_bundle(struct sk_buff *tskb, struct sk_buff **skb, u32 mss,
|
/openbmc/linux/drivers/net/ethernet/vertexcom/ |
H A D | mse102x.c | 225 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()
|
/openbmc/linux/drivers/net/ethernet/qualcomm/ |
H A D | qca_spi.c | 747 struct sk_buff *tskb; in qcaspi_netdev_xmit() local 762 tskb = skb_copy_expand(skb, QCAFRM_HEADER_LEN, in qcaspi_netdev_xmit() 764 if (!tskb) { in qcaspi_netdev_xmit() 769 skb = tskb; in qcaspi_netdev_xmit()
|
/openbmc/linux/net/kcm/ |
H A D | kcmsock.c | 814 struct sk_buff *tskb; in kcm_sendmsg() local 816 tskb = alloc_skb(0, sk->sk_allocation); in kcm_sendmsg() 817 if (!tskb) in kcm_sendmsg() 821 skb_shinfo(head)->frag_list = tskb; in kcm_sendmsg() 823 skb->next = tskb; in kcm_sendmsg() 825 skb = tskb; in kcm_sendmsg()
|
/openbmc/linux/net/ipv4/ |
H A D | tcp_output.c | 3514 struct sk_buff *skb, *tskb, *tail = tcp_write_queue_tail(sk); in tcp_send_fin() local 3522 tskb = tail; in tcp_send_fin() 3523 if (!tskb && tcp_under_memory_pressure(sk)) in tcp_send_fin() 3524 tskb = skb_rb_last(&sk->tcp_rtx_queue); in tcp_send_fin() 3526 if (tskb) { in tcp_send_fin() 3527 TCP_SKB_CB(tskb)->tcp_flags |= TCPHDR_FIN; in tcp_send_fin() 3528 TCP_SKB_CB(tskb)->end_seq++; in tcp_send_fin()
|