Home
last modified time | relevance | path

Searched refs:snd_ssthresh (Results 1 – 25 of 30) sorted by relevance

12

/linux/net/ipv4/
A Dtcp_vegas.c162 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()
A Dtcp_metrics.c407 max(tp->snd_cwnd >> 1, tp->snd_ssthresh)); in tcp_update_metrics()
419 (val + tp->snd_ssthresh) >> 1); in tcp_update_metrics()
424 if (val && tp->snd_ssthresh > val) in tcp_update_metrics()
426 tp->snd_ssthresh); in tcp_update_metrics()
468 tp->snd_ssthresh = val; in tcp_init_metrics()
469 if (tp->snd_ssthresh > tp->snd_cwnd_clamp) in tcp_init_metrics()
470 tp->snd_ssthresh = tp->snd_cwnd_clamp; in tcp_init_metrics()
475 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_init_metrics()
A Dtcp_westwood.c247 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()
A Dtcp_cubic.c139 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in cubictcp_init()
422 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update()
442 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update()
A Dbpf_tcp_ca.c124 case offsetof(struct tcp_sock, snd_ssthresh): in bpf_tcp_ca_btf_struct_access()
125 end = offsetofend(struct tcp_sock, snd_ssthresh); in bpf_tcp_ca_btf_struct_access()
A Dtcp_nv.c384 } else if (tp->snd_ssthresh == TCP_INFINITE_SSTHRESH) { in tcpnv_acked()
399 tp->snd_ssthresh = in tcpnv_acked()
A Dtcp_cdg.c165 tp->snd_ssthresh = tp->snd_cwnd; in tcp_cdg_hystart_update()
184 tp->snd_ssthresh = tp->snd_cwnd; in tcp_cdg_hystart_update()
A Dtcp_hybla.c162 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_ssthresh); in hybla_cong_avoid()
A Dtcp_yeah.c150 tp->snd_ssthresh = tp->snd_cwnd; in tcp_yeah_cong_avoid()
A Dtcp_bic.c77 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init()
A Dtcp_bbr.c898 tcp_sk(sk)->snd_ssthresh = in bbr_check_drain()
1044 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in bbr_init()
1103 return tcp_sk(sk)->snd_ssthresh; in bbr_ssthresh()
A Dtcp_dctcp.c152 tp->snd_ssthresh = max(tp->snd_cwnd >> 1U, 2U); in dctcp_react_to_loss()
A Dtcp_input.c912 if (tp->snd_cwnd < tp->snd_ssthresh / 2) in tcp_update_pacing_rate()
2149 tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk); in tcp_enter_loss()
2460 tp->snd_ssthresh, tp->prior_ssthresh, in DBGUNDO()
2469 tp->snd_ssthresh, tp->prior_ssthresh, in DBGUNDO()
2495 if (tp->prior_ssthresh > tp->snd_ssthresh) { in tcp_undo_cwnd_reduction()
2496 tp->snd_ssthresh = tp->prior_ssthresh; in tcp_undo_cwnd_reduction()
2611 int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp); in tcp_cwnd_reduction()
2641 if (tp->snd_ssthresh < TCP_INFINITE_SSTHRESH && in tcp_end_cwnd_reduction()
2643 tp->snd_cwnd = tp->snd_ssthresh; in tcp_end_cwnd_reduction()
2715 tp->snd_ssthresh = tcp_current_ssthresh(sk); in tcp_mtup_probe_success()
[all …]
A Dtcp_cong.c398 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); in tcp_slow_start()
/linux/tools/testing/selftests/bpf/
A Dbpf_tcp_helpers.h71 __u32 snd_ssthresh; member
197 return tp->snd_cwnd < tp->snd_ssthresh; in tcp_in_slow_start()
/linux/tools/testing/selftests/bpf/progs/
A Dbpf_iter_tcp4.c71 return tcp->snd_ssthresh >= TCP_INFINITE_SSTHRESH; in tcp_in_initial_slowstart()
141 : (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh) in dump_tcp_sock()
A Dbpf_cubic.c184 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in BPF_PROG()
472 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update()
487 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update()
A Dbpf_iter_tcp6.c71 return tcp->snd_ssthresh >= TCP_INFINITE_SSTHRESH; in tcp_in_initial_slowstart()
146 : tp->tcp.snd_ssthresh) in dump_tcp6_sock()
A Dtest_sock_fields.c90 dst->snd_ssthresh = src->snd_ssthresh; in tpcpy()
A Dbpf_dctcp.c144 tp->snd_ssthresh = max(tp->snd_cwnd >> 1U, 2U); in dctcp_react_to_loss()
/linux/include/linux/
A Dtcp.h285 u32 snd_ssthresh; /* Slow start size threshold */ member
/linux/tools/testing/selftests/bpf/prog_tests/
A Dsock_fields.c82 tp->snd_cwnd, tp->srtt_us, tp->rtt_min, tp->snd_ssthresh, in print_tp()
/linux/include/net/
A Dtcp.h1212 return tp->snd_cwnd < tp->snd_ssthresh; in tcp_in_slow_start()
1217 return tp->snd_ssthresh >= TCP_INFINITE_SSTHRESH; in tcp_in_initial_slowstart()
1235 return tp->snd_ssthresh; in tcp_current_ssthresh()
1237 return max(tp->snd_ssthresh, in tcp_current_ssthresh()
/linux/tools/include/uapi/linux/
A Dbpf.h5428 __u32 snd_ssthresh; /* Slow start size threshold */ member
5771 __u32 snd_ssthresh; member
/linux/include/uapi/linux/
A Dbpf.h5428 __u32 snd_ssthresh; /* Slow start size threshold */ member
5771 __u32 snd_ssthresh; member

Completed in 69 milliseconds

12