Home
last modified time | relevance | path

Searched refs:prior_cwnd (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/kernel/net/ipv4/
H A Dtcp_bbr.c116 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 Dtcp_cong.c467 return max(tp->snd_cwnd, tp->prior_cwnd); in tcp_reno_undo_cwnd()
H A Dtcp_input.c2136 tp->prior_cwnd = tp->snd_cwnd; in tcp_enter_loss()
2602 tp->prior_cwnd = tp->snd_cwnd; in tcp_init_cwnd_reduction()
2615 if (newly_acked_sacked <= 0 || WARN_ON_ONCE(!tp->prior_cwnd)) in tcp_cwnd_reduction()
2621 tp->prior_cwnd - 1; in tcp_cwnd_reduction()
2622 sndcnt = div_u64(dividend, tp->prior_cwnd) - tp->prr_out; in tcp_cwnd_reduction()
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/
H A Dbpf_tcp_helpers.h76 __u32 prior_cwnd; member
/OK3568_Linux_fs/kernel/include/linux/
H A Dtcp.h299 u32 prior_cwnd; /* cwnd right before starting loss recovery */ member
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/
H A Dbpf_cubic.c532 return max(tp->snd_cwnd, tp->prior_cwnd); in BPF_STRUCT_OPS()