Home
last modified time | relevance | path

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

/linux/net/tipc/
H A Dmsg.c521 * @tskb: the last/target message to which the new one will be appended in tipc_msg_try_bundle()
532 bool tipc_msg_try_bundle(struct sk_buff *tskb, struct sk_buff **skb, u32 mss, in tipc_msg_try_bundle()
550 if (unlikely(!tskb)) in tipc_msg_try_bundle()
554 if (msg_user(buf_msg(tskb)) == MSG_BUNDLER) { in tipc_msg_try_bundle()
560 tsz = msg_size(buf_msg(tskb)); in tipc_msg_try_bundle()
563 if (unlikely(pskb_expand_head(tskb, INT_H_SIZE, mss - tsz - INT_H_SIZE, in tipc_msg_try_bundle()
566 inner = buf_msg(tskb); in tipc_msg_try_bundle()
567 skb_push(tskb, INT_H_SIZE); in tipc_msg_try_bundle()
568 outer = buf_msg(tskb); in tipc_msg_try_bundle()
577 if (likely(tipc_msg_bundle(tskb, ms
520 tipc_msg_try_bundle(struct sk_buff * tskb,struct sk_buff ** skb,u32 mss,u32 dnode,bool * new_bundle) tipc_msg_try_bundle() argument
[all...]
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.c2902 struct sk_buff *hskb, *tskb; in tipc_link_dump() local
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()
2945 tskb = skb_peek_tail(list); in tipc_link_dump()
2948 (tskb) ? msg_seqno(buf_msg(tskb)) : 0); in tipc_link_dump()
2953 tskb = skb_peek_tail(list); in tipc_link_dump()
2956 (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.c230 struct sk_buff *tskb = NULL; in mse102x_tx_frame_spi() local
238 tskb = skb_copy_expand(txp, DET_SOF_LEN, DET_DFT_LEN + pad, in mse102x_tx_frame_spi()
240 if (!tskb) in mse102x_tx_frame_spi()
243 txp = tskb; in mse102x_tx_frame_spi()
264 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.c816 struct sk_buff *tskb; in kcm_sendmsg() local
818 tskb = alloc_skb(0, sk->sk_allocation); in kcm_sendmsg()
819 if (!tskb) in kcm_sendmsg()
823 skb_shinfo(head)->frag_list = tskb; in kcm_sendmsg()
825 skb->next = tskb; in kcm_sendmsg()
828 skb = tskb; in kcm_sendmsg()