Searched refs:prior_cwnd (Results 1 - 11 of 11) sorted by relevance
/kernel/linux/linux-5.10/net/ipv4/ |
H A D | tcp_bbr.c | 116 u32 prior_cwnd; /* prior cwnd upon entering loss recovery */ member 324 bbr->prior_cwnd = tp->snd_cwnd; /* this cwnd is good enough */ in bbr_save_cwnd() 326 bbr->prior_cwnd = max(bbr->prior_cwnd, tp->snd_cwnd); in bbr_save_cwnd() 500 cwnd = max(cwnd, bbr->prior_cwnd); in bbr_set_cwnd_to_recover_or_restore() 915 tp->snd_cwnd = max(tp->snd_cwnd, bbr->prior_cwnd); in bbr_check_probe_rtt_done() 1041 bbr->prior_cwnd = 0; in bbr_init()
|
H A D | tcp_cong.c | 467 return max(tp->snd_cwnd, tp->prior_cwnd); in tcp_reno_undo_cwnd()
|
H A D | tcp_input.c | 2150 tp->prior_cwnd = tp->snd_cwnd; in tcp_enter_loss() 2617 tp->prior_cwnd = tp->snd_cwnd; in tcp_init_cwnd_reduction() 2630 if (newly_acked_sacked <= 0 || WARN_ON_ONCE(!tp->prior_cwnd)) in tcp_cwnd_reduction() 2636 tp->prior_cwnd - 1; in tcp_cwnd_reduction() 2637 sndcnt = div_u64(dividend, tp->prior_cwnd) - tp->prr_out; in tcp_cwnd_reduction()
|
/kernel/linux/linux-6.6/net/ipv4/ |
H A D | tcp_bbr.c | 118 u32 prior_cwnd; /* prior cwnd upon entering loss recovery */ member 326 bbr->prior_cwnd = tcp_snd_cwnd(tp); /* this cwnd is good enough */ in bbr_save_cwnd() 328 bbr->prior_cwnd = max(bbr->prior_cwnd, tcp_snd_cwnd(tp)); in bbr_save_cwnd() 502 cwnd = max(cwnd, bbr->prior_cwnd); in bbr_set_cwnd_to_recover_or_restore() 917 tcp_snd_cwnd_set(tp, max(tcp_snd_cwnd(tp), bbr->prior_cwnd)); in bbr_check_probe_rtt_done() 1043 bbr->prior_cwnd = 0; in bbr_init()
|
H A D | tcp_cong.c | 529 return max(tcp_snd_cwnd(tp), tp->prior_cwnd); in tcp_reno_undo_cwnd()
|
H A D | tcp_input.c | 2169 tp->prior_cwnd = tcp_snd_cwnd(tp); in tcp_enter_loss() 2636 tp->prior_cwnd = tcp_snd_cwnd(tp); in tcp_init_cwnd_reduction() 2649 if (newly_acked_sacked <= 0 || WARN_ON_ONCE(!tp->prior_cwnd)) in tcp_cwnd_reduction() 2655 tp->prior_cwnd - 1; in tcp_cwnd_reduction() 2656 sndcnt = div_u64(dividend, tp->prior_cwnd) - tp->prr_out; in tcp_cwnd_reduction()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
H A D | bpf_tcp_helpers.h | 76 __u32 prior_cwnd; member
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | bpf_tcp_helpers.h | 86 __u32 prior_cwnd; member
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | tcp.h | 291 u32 prior_cwnd; /* cwnd right before starting loss recovery */ member
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
H A D | bpf_cubic.c | 532 return max(tp->snd_cwnd, tp->prior_cwnd); in BPF_STRUCT_OPS()
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | tcp.h | 323 u32 prior_cwnd; /* cwnd right before starting loss recovery */ member
|
Completed in 32 milliseconds