Home
last modified time | relevance | path

Searched refs:tcp_skb_pcount (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.4/net/ipv4/
Dtcp_output.c75 tp->packets_out += tcp_skb_pcount(skb); in tcp_event_new_data_sent()
80 tcp_skb_pcount(skb)); in tcp_event_new_data_sent()
1028 BUG_ON(!skb || !tcp_skb_pcount(skb)); in __tcp_transmit_skb()
1066 if (tcp_skb_pcount(skb) > 1) in __tcp_transmit_skb()
1144 tcp_event_ack_sent(sk, tcp_skb_pcount(skb), rcv_nxt); in __tcp_transmit_skb()
1148 tp->data_segs_out += tcp_skb_pcount(skb); in __tcp_transmit_skb()
1154 tcp_skb_pcount(skb)); in __tcp_transmit_skb()
1156 tp->segs_out += tcp_skb_pcount(skb); in __tcp_transmit_skb()
1158 skb_shinfo(skb)->gso_segs = tcp_skb_pcount(skb); in __tcp_transmit_skb()
1361 old_factor = tcp_skb_pcount(skb); in tcp_fragment()
[all …]
Dtcp_recovery.c13 tp->retrans_out -= tcp_skb_pcount(skb); in tcp_mark_skb_lost()
15 tcp_skb_pcount(skb)); in tcp_mark_skb_lost()
245 if (tcp_skb_pcount(skb) > 1 && skb->len > mss) in tcp_newreno_mark_lost()
Dtcp_input.c937 tp->lost += tcp_skb_pcount(skb); in tcp_sum_lost()
945 tp->lost_out += tcp_skb_pcount(skb); in tcp_skb_mark_lost()
957 tp->lost_out += tcp_skb_pcount(skb); in tcp_skb_mark_lost_uncond_verify()
1159 if (tcp_skb_pcount(skb) > 1 && !in_sack && in tcp_match_skb_to_sack()
1311 WARN_ON_ONCE(tcp_skb_pcount(skb) < pcount); in tcp_shifted_skb()
1323 if (tcp_skb_pcount(skb) <= 1) in tcp_shifted_skb()
1330 BUG_ON(!tcp_skb_pcount(skb)); in tcp_shifted_skb()
1341 tp->lost_cnt_hint -= tcp_skb_pcount(prev); in tcp_shifted_skb()
1368 return tcp_skb_pcount(skb) == 1 ? skb->len : tcp_skb_mss(skb); in tcp_skb_seglen()
1387 if (unlikely(tcp_skb_pcount(to) + pcount > 65535)) in tcp_skb_shift()
[all …]
/Linux-v5.4/include/net/
Dtcp.h937 static inline int tcp_skb_pcount(const struct sk_buff *skb) in tcp_skb_pcount() function