Searched refs:tcp_wnd_end (Results 1 – 5 of 5) sorted by relevance
/kernel/linux/common_modules/newip/third_party/linux-5.10/net/newip/ |
D | tcp_nip_output.c | 949 if (!before(tcp_wnd_end(tp), tp->snd_nxt)) in tcp_nip_acceptable_seq() 952 return tcp_wnd_end(tp); in tcp_nip_acceptable_seq() 1050 return !after(end_seq, tcp_wnd_end(tp)); in tcp_nip_snd_wnd_test() 1171 if (!before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp)) && in __tcp_nip_retransmit_skb() 1299 if (skb && before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp))) { in tcp_nip_write_wakeup() 1302 unsigned int seg_size = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; in tcp_nip_write_wakeup()
|
D | tcp_nip_input.c | 1291 if (!after(TCP_SKB_CB(tcp_nip_send_head(sk))->end_seq, tcp_wnd_end(tp))) { in tcp_nip_ack_probe()
|
/kernel/linux/linux-5.10/net/ipv4/ |
D | tcp_output.c | 99 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() 2008 window = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; in tcp_mss_split_point() 2106 return !after(end_seq, tcp_wnd_end(tp)); in tcp_snd_wnd_test() 2202 send_win = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; in tcp_tso_should_defer() 2379 if (after(tp->snd_nxt + size_needed, tcp_wnd_end(tp))) in tcp_mtu_probe() 3127 if (after(TCP_SKB_CB(skb)->end_seq, tcp_wnd_end(tp))) in tcp_retrans_try_collapse() 3175 avail_wnd = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; in __tcp_retransmit_skb() 4050 if (skb && before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp))) { in tcp_write_wakeup() [all …]
|
D | tcp_input.c | 2824 after(tcp_wnd_end(tp), tp->snd_nxt)) { in tcp_process_loss() 3423 if (!after(TCP_SKB_CB(head)->end_seq, tcp_wnd_end(tp))) { in tcp_ack_probe()
|
/kernel/linux/linux-5.10/include/net/ |
D | tcp.h | 1258 static inline u32 tcp_wnd_end(const struct tcp_sock *tp) in tcp_wnd_end() function
|