/kernel/linux/linux-5.10/net/ipv4/ |
D | tcp_vegas.c | 162 return min(tp->snd_ssthresh, tp->snd_cwnd); in tcp_vegas_ssthresh() 242 tp->snd_ssthresh = tcp_vegas_ssthresh(tp); in tcp_vegas_cong_avoid() 258 tp->snd_ssthresh in tcp_vegas_cong_avoid() 277 tp->snd_ssthresh = tcp_current_ssthresh(sk); in tcp_vegas_cong_avoid()
|
D | tcp_metrics.c | 427 max(tp->snd_cwnd >> 1, tp->snd_ssthresh)); in tcp_update_metrics() 439 (val + tp->snd_ssthresh) >> 1); in tcp_update_metrics() 444 if (val && tp->snd_ssthresh > val) in tcp_update_metrics() 446 tp->snd_ssthresh); in tcp_update_metrics() 489 tp->snd_ssthresh = val; in tcp_init_metrics() 490 if (tp->snd_ssthresh > tp->snd_cwnd_clamp) in tcp_init_metrics() 491 tp->snd_ssthresh = tp->snd_cwnd_clamp; in tcp_init_metrics() 496 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_init_metrics()
|
D | bpf_tcp_ca.c | 126 case offsetof(struct tcp_sock, snd_ssthresh): in bpf_tcp_ca_btf_struct_access() 127 end = offsetofend(struct tcp_sock, snd_ssthresh); in bpf_tcp_ca_btf_struct_access()
|
D | tcp_westwood.c | 247 tp->snd_cwnd = tp->snd_ssthresh = tcp_westwood_bw_rttmin(sk); in tcp_westwood_event() 250 tp->snd_ssthresh = tcp_westwood_bw_rttmin(sk); in tcp_westwood_event()
|
D | tcp_cubic.c | 146 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init() 429 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update() 449 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update()
|
D | tcp_nv.c | 385 } else if (tp->snd_ssthresh == TCP_INFINITE_SSTHRESH) { in tcpnv_acked() 400 tp->snd_ssthresh = in tcpnv_acked()
|
D | tcp_cdg.c | 165 tp->snd_ssthresh = tp->snd_cwnd; in tcp_cdg_hystart_update() 184 tp->snd_ssthresh = tp->snd_cwnd; in tcp_cdg_hystart_update()
|
D | tcp_hybla.c | 162 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_ssthresh); in hybla_cong_avoid()
|
D | tcp_yeah.c | 150 tp->snd_ssthresh = tp->snd_cwnd; in tcp_yeah_cong_avoid()
|
D | tcp_bic.c | 77 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init()
|
D | tcp_dctcp.c | 150 tp->snd_ssthresh = max(tp->snd_cwnd >> 1U, 2U); in dctcp_react_to_loss()
|
D | tcp_bbr.c | 896 tcp_sk(sk)->snd_ssthresh = in bbr_check_drain() 1042 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in bbr_init() 1101 return tcp_sk(sk)->snd_ssthresh; in bbr_ssthresh()
|
D | tcp_input.c | 906 if (tp->snd_cwnd < tp->snd_ssthresh / 2) in tcp_update_pacing_rate() 2138 tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk); in tcp_enter_loss() 2452 tp->snd_ssthresh, tp->prior_ssthresh, in DBGUNDO() 2461 tp->snd_ssthresh, tp->prior_ssthresh, in DBGUNDO() 2487 if (tp->prior_ssthresh > tp->snd_ssthresh) { in tcp_undo_cwnd_reduction() 2488 tp->snd_ssthresh = tp->prior_ssthresh; in tcp_undo_cwnd_reduction() 2606 tp->snd_ssthresh = inet_csk(sk)->icsk_ca_ops->ssthresh(sk); in tcp_init_cwnd_reduction() 2614 int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp); in tcp_cwnd_reduction() 2621 u64 dividend = (u64)tp->snd_ssthresh * tp->prr_delivered + in tcp_cwnd_reduction() 2645 if (tp->snd_ssthresh < TCP_INFINITE_SSTHRESH && in tcp_end_cwnd_reduction() [all …]
|
D | tcp_cong.c | 398 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); in tcp_slow_start()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
D | bpf_tcp_helpers.h | 65 __u32 snd_ssthresh; member 190 __u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); in tcp_slow_start() 200 return tp->snd_cwnd < tp->snd_ssthresh; in tcp_in_slow_start()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
D | bpf_iter_tcp4.c | 72 return tcp->snd_ssthresh >= TCP_INFINITE_SSTHRESH; in tcp_in_initial_slowstart() 142 : (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh) in dump_tcp_sock()
|
D | bpf_cubic.c | 188 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in BPF_PROG() 478 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update() 493 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update()
|
D | bpf_iter_tcp6.c | 72 return tcp->snd_ssthresh >= TCP_INFINITE_SSTHRESH; in tcp_in_initial_slowstart() 147 : tp->tcp.snd_ssthresh) in dump_tcp6_sock()
|
D | test_sock_fields.c | 91 dst->snd_ssthresh = src->snd_ssthresh; in tpcpy()
|
D | bpf_dctcp.c | 119 tp->snd_ssthresh = max(tp->snd_cwnd >> 1U, 2U); in dctcp_react_to_loss()
|
/kernel/linux/linux-5.10/include/linux/ |
D | tcp.h | 285 u32 snd_ssthresh; /* Slow start size threshold */ member
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/ |
D | sock_fields.c | 93 tp->snd_cwnd, tp->srtt_us, tp->rtt_min, tp->snd_ssthresh, in print_tp()
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
D | bpf.h | 4195 __u32 snd_ssthresh; /* Slow start size threshold */ member 4515 __u32 snd_ssthresh; member
|
/kernel/linux/linux-5.10/tools/include/uapi/linux/ |
D | bpf.h | 4195 __u32 snd_ssthresh; /* Slow start size threshold */ member 4515 __u32 snd_ssthresh; member
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/ |
D | bpf.h | 643 __u32 snd_ssthresh; member 867 __u32 snd_ssthresh; member
|