Searched refs:snd_ssthresh (Results 1 - 25 of 33) sorted by relevance

12

/linux-master/tools/testing/selftests/bpf/progs/
H A Dtcp_ca_incompl_cong_ops.c18 return tcp_sk(sk)->snd_ssthresh;
H A Dtcp_ca_update.c39 return tcp_sk(sk)->snd_ssthresh;
H A Dtcp_ca_write_sk_pacing.c55 return tcp_sk(sk)->snd_ssthresh;
H A Dbpf_iter_tcp6.c71 return tcp->snd_ssthresh >= TCP_INFINITE_SSTHRESH;
146 : tp->tcp.snd_ssthresh)
H A Dbpf_iter_tcp4.c71 return tcp->snd_ssthresh >= TCP_INFINITE_SSTHRESH;
141 : (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh)
H A Dbpf_cubic.c184 tcp_sk(sk)->snd_ssthresh = initial_ssthresh;
472 tp->snd_ssthresh = tp->snd_cwnd;
487 tp->snd_ssthresh = tp->snd_cwnd;
H A Dtest_sock_fields.c91 dst->snd_ssthresh = src->snd_ssthresh;
H A Dbpf_dctcp.c153 tp->snd_ssthresh = max(tp->snd_cwnd >> 1U, 2U);
/linux-master/net/ipv4/
H A Dtcp_vegas.c162 return min(tp->snd_ssthresh, tcp_snd_cwnd(tp));
243 tp->snd_ssthresh = tcp_vegas_ssthresh(tp);
259 tp->snd_ssthresh
278 tp->snd_ssthresh = tcp_current_ssthresh(sk);
H A Dtcp_westwood.c247 tp->snd_ssthresh = tcp_westwood_bw_rttmin(sk);
248 tcp_snd_cwnd_set(tp, tp->snd_ssthresh);
251 tp->snd_ssthresh = tcp_westwood_bw_rttmin(sk);
H A Dtcp_metrics.c427 max(tcp_snd_cwnd(tp) >> 1, tp->snd_ssthresh));
439 (val + tp->snd_ssthresh) >> 1);
444 if (val && tp->snd_ssthresh > val)
446 tp->snd_ssthresh);
476 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH;
493 tp->snd_ssthresh = val;
494 if (tp->snd_ssthresh > tp->snd_cwnd_clamp)
495 tp->snd_ssthresh = tp->snd_cwnd_clamp;
H A Dtcp_cubic.c139 tcp_sk(sk)->snd_ssthresh = initial_ssthresh;
422 tp->snd_ssthresh = tcp_snd_cwnd(tp);
442 tp->snd_ssthresh = tcp_snd_cwnd(tp);
H A Dtcp_yeah.c150 tp->snd_ssthresh = tcp_snd_cwnd(tp);
H A Dtcp_hybla.c162 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp), tp->snd_ssthresh));
H A Dtcp_nv.c384 } else if (tp->snd_ssthresh == TCP_INFINITE_SSTHRESH) {
399 tp->snd_ssthresh =
H A Dbpf_tcp_ca.c110 case offsetof(struct tcp_sock, snd_ssthresh):
111 end = offsetofend(struct tcp_sock, snd_ssthresh);
H A Dtcp_cdg.c165 tp->snd_ssthresh = tcp_snd_cwnd(tp);
184 tp->snd_ssthresh = tcp_snd_cwnd(tp);
H A Dtcp_bic.c77 tcp_sk(sk)->snd_ssthresh = initial_ssthresh;
H A Dtcp_dctcp.c169 tp->snd_ssthresh = max(tcp_snd_cwnd(tp) >> 1U, 2U);
H A Dtcp_bbr.c899 tcp_sk(sk)->snd_ssthresh =
1045 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH;
1104 return tcp_sk(sk)->snd_ssthresh;
H A Dtcp_cong.c456 u32 cwnd = min(tcp_snd_cwnd(tp) + acked, tp->snd_ssthresh);
H A Dtcp_input.c941 * [1] : Normal Slow Start condition is (tp->snd_cwnd < tp->snd_ssthresh)
942 * If snd_cwnd >= (tp->snd_ssthresh / 2), we are approaching
945 if (tcp_snd_cwnd(tp) < tp->snd_ssthresh / 2)
2190 tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk);
2505 tp->snd_ssthresh, tp->prior_ssthresh,
2514 tp->snd_ssthresh, tp->prior_ssthresh,
2540 if (tp->prior_ssthresh > tp->snd_ssthresh) {
2541 tp->snd_ssthresh = tp->prior_ssthresh;
2659 tp->snd_ssthresh = inet_csk(sk)->icsk_ca_ops->ssthresh(sk);
2667 int delta = tp->snd_ssthresh
[all...]
/linux-master/tools/testing/selftests/bpf/
H A Dbpf_tcp_helpers.h75 __u32 snd_ssthresh; member in struct:tcp_sock
202 return tp->snd_cwnd < tp->snd_ssthresh;
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dsock_fields.c85 printf("%s: snd_cwnd:%u srtt_us:%u rtt_min:%u snd_ssthresh:%u rcv_nxt:%u "
92 tp->snd_cwnd, tp->srtt_us, tp->rtt_min, tp->snd_ssthresh,
/linux-master/include/linux/
H A Dtcp.h246 u32 snd_ssthresh; /* Slow start size threshold */ member in struct:tcp_sock

Completed in 291 milliseconds

12