Home
last modified time | relevance | path

Searched refs:tcp_wnd_end (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/net/ipv4/
Dtcp_output.c99 if (!before(tcp_wnd_end(tp), tp->snd_nxt) || in tcp_acceptable_seq()
101 ((tp->snd_nxt - tcp_wnd_end(tp)) < (1 << tp->rx_opt.rcv_wscale)))) in tcp_acceptable_seq()
104 return tcp_wnd_end(tp); in tcp_acceptable_seq()
2016 window = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; in tcp_mss_split_point()
2114 return !after(end_seq, tcp_wnd_end(tp)); in tcp_snd_wnd_test()
2207 send_win = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; in tcp_tso_should_defer()
2386 if (after(tp->snd_nxt + size_needed, tcp_wnd_end(tp))) in tcp_mtu_probe()
3132 if (after(TCP_SKB_CB(skb)->end_seq, tcp_wnd_end(tp))) in tcp_retrans_try_collapse()
3172 avail_wnd = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; in __tcp_retransmit_skb()
4048 if (skb && before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp))) { in tcp_write_wakeup()
[all …]
Dtcp_input.c2855 after(tcp_wnd_end(tp), tp->snd_nxt)) { in tcp_process_loss()
3453 if (!after(TCP_SKB_CB(head)->end_seq, tcp_wnd_end(tp))) { in tcp_ack_probe()
/linux-6.1.9/include/net/
Dtcp.h1283 static inline u32 tcp_wnd_end(const struct tcp_sock *tp) in tcp_wnd_end() function