Home
last modified time | relevance | path

Searched refs:next_skb (Results 1 – 14 of 14) sorted by relevance

/linux-6.12.1/drivers/isdn/mISDN/
Dhwchannel.c91 ch->next_skb = NULL; in mISDN_initbchannel()
127 if (ch->next_skb) { in mISDN_clear_bchannel()
128 dev_kfree_skb(ch->next_skb); in mISDN_clear_bchannel()
129 ch->next_skb = NULL; in mISDN_clear_bchannel()
365 bch->tx_skb = bch->next_skb; in get_next_bframe()
367 bch->next_skb = NULL; in get_next_bframe()
445 if (ch->next_skb) { in bchannel_senddata()
448 __func__, skb->len, ch->next_skb->len); in bchannel_senddata()
453 ch->next_skb = skb; in bchannel_senddata()
/linux-6.12.1/net/ipv4/
Dtcp_output.c2696 struct sk_buff *next_skb = skb->next; in tcp_grow_skb() local
2702 if (!tcp_skb_can_collapse(skb, next_skb)) in tcp_grow_skb()
2705 nlen = min_t(u32, amount, next_skb->len); in tcp_grow_skb()
2706 if (!nlen || !skb_shift(skb, next_skb, nlen)) in tcp_grow_skb()
2710 TCP_SKB_CB(next_skb)->seq += nlen; in tcp_grow_skb()
2712 if (!next_skb->len) { in tcp_grow_skb()
2714 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(next_skb)->end_seq; in tcp_grow_skb()
2716 tcp_eat_one_skb(sk, skb, next_skb); in tcp_grow_skb()
3203 const struct sk_buff *next_skb) in tcp_skb_collapse_tstamp() argument
3205 if (unlikely(tcp_has_tx_tstamp(next_skb))) { in tcp_skb_collapse_tstamp()
[all …]
/linux-6.12.1/include/linux/
DmISDNhw.h159 struct sk_buff *next_skb; member
Dskbuff.h1848 #define skb_list_walk_safe(first, skb, next_skb) \ argument
1849 for ((skb) = (first), (next_skb) = (skb) ? (skb)->next : NULL; (skb); \
1850 (skb) = (next_skb), (next_skb) = (skb) ? (skb)->next : NULL)
/linux-6.12.1/drivers/net/wireless/realtek/rtw88/
Dusb.c553 struct sk_buff *next_skb; in rtw_usb_rx_handler() local
581 next_skb = skb_clone(skb, GFP_KERNEL); in rtw_usb_rx_handler()
583 next_skb = NULL; in rtw_usb_rx_handler()
599 skb = next_skb; in rtw_usb_rx_handler()
/linux-6.12.1/drivers/net/ethernet/chelsio/inline_crypto/chtls/
Dchtls_io.c1508 struct sk_buff *next_skb; in chtls_pt_recvmsg() local
1519 next_skb = skb_peek(&sk->sk_receive_queue); in chtls_pt_recvmsg()
1520 if (copied >= target && !next_skb) in chtls_pt_recvmsg()
1522 if (ULP_SKB_CB(next_skb)->flags & ULPCB_FLAG_TLS_HDR) in chtls_pt_recvmsg()
/linux-6.12.1/drivers/net/wireless/realtek/rtlwifi/
Dpci.c397 struct sk_buff *next_skb; in _rtl_update_earlymode_info() local
407 skb_queue_walk(&rtlpriv->mac80211.skb_waitq[tid], next_skb) { in _rtl_update_earlymode_info()
410 next_info = IEEE80211_SKB_CB(next_skb); in _rtl_update_earlymode_info()
413 next_skb->len + additionlen; in _rtl_update_earlymode_info()
420 next_skb)) in _rtl_update_earlymode_info()
/linux-6.12.1/drivers/net/wireless/ath/ath5k/
Dbase.c1587 struct sk_buff *skb, *next_skb; in ath5k_tasklet_rx() local
1620 next_skb = ath5k_rx_skb_alloc(ah, &next_skb_addr); in ath5k_tasklet_rx()
1626 if (!next_skb) in ath5k_tasklet_rx()
1637 bf->skb = next_skb; in ath5k_tasklet_rx()
/linux-6.12.1/drivers/net/wireless/realtek/rtl8xxxu/
Dcore.c6354 struct sk_buff *next_skb = NULL; in rtl8xxxu_parse_rxdesc16() local
6396 next_skb = skb_clone(skb, GFP_ATOMIC); in rtl8xxxu_parse_rxdesc16()
6452 skb = next_skb; in rtl8xxxu_parse_rxdesc16()
6454 skb_pull(next_skb, pkt_offset); in rtl8xxxu_parse_rxdesc16()
6458 next_skb = NULL; in rtl8xxxu_parse_rxdesc16()
6471 struct sk_buff *next_skb = NULL; in rtl8xxxu_parse_rxdesc24() local
6504 next_skb = skb_clone(skb, GFP_ATOMIC); in rtl8xxxu_parse_rxdesc24()
6558 skb = next_skb; in rtl8xxxu_parse_rxdesc24()
6560 skb_pull(next_skb, pkt_offset); in rtl8xxxu_parse_rxdesc24()
6563 next_skb = NULL; in rtl8xxxu_parse_rxdesc24()
/linux-6.12.1/net/tls/
Dtls_sw.c1814 struct sk_buff *next_skb; in process_rx_list() local
1850 next_skb = skb_peek_next(skb, &ctx->rx_list); in process_rx_list()
1857 skb = next_skb; in process_rx_list()
/linux-6.12.1/net/unix/
Daf_unix.c3179 struct sk_buff *next_skb; in unix_ioctl() local
3181 next_skb = skb_peek_next(skb, &sk->sk_receive_queue); in unix_ioctl()
3185 (!oob_skb || next_skb == oob_skb))) in unix_ioctl()
/linux-6.12.1/net/core/
Dskbuff.c4370 next_skb: in skb_seq_read()
4432 goto next_skb; in skb_seq_read()
4436 goto next_skb; in skb_seq_read()
/linux-6.12.1/include/net/
Dtcp.h675 const struct sk_buff *next_skb);
/linux-6.12.1/drivers/net/wireless/ath/ath11k/
Ddp_rx.c5315 goto next_skb; in ath11k_dp_rx_process_mon_status()
5324 next_skb: in ath11k_dp_rx_process_mon_status()