Searched refs:snd_ssthresh (Results 1 - 25 of 33) sorted by last modified time

12

/linux-master/net/ipv4/
H A Dtcp.c444 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH;
3038 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH;
3847 info->tcpi_snd_ssthresh = tp->snd_ssthresh;
3978 nla_put_u32(stats, TCP_NLA_SND_SSTHRESH, tp->snd_ssthresh);
4636 CACHELINE_ASSERT_GROUP_MEMBER(struct tcp_sock, tcp_sock_read_rx, snd_ssthresh);
H A Dtcp_ipv4.c2917 (tcp_in_initial_slowstart(tp) ? -1 : 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...]
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_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 Dbpf_tcp_ca.c110 case offsetof(struct tcp_sock, snd_ssthresh):
111 end = offsetofend(struct tcp_sock, snd_ssthresh);
H A Dtcp_output.c150 tp->snd_ssthresh = tcp_current_ssthresh(sk);
1897 tp->snd_ssthresh = tcp_current_ssthresh(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_cdg.c165 tp->snd_ssthresh = tcp_snd_cwnd(tp);
184 tp->snd_ssthresh = tcp_snd_cwnd(tp);
/linux-master/tools/include/uapi/linux/
H A Dbpf.h6341 __u32 snd_ssthresh; /* Slow start size threshold */ member in struct:bpf_tcp_sock
6780 __u32 snd_ssthresh; member in struct:bpf_sock_ops
/linux-master/net/ipv6/
H A Dtcp_ipv6.c2238 (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh)
/linux-master/net/core/
H A Dfilter.c5245 tp->snd_ssthresh = val;
7135 case offsetof(struct bpf_tcp_sock, snd_ssthresh):
7136 BPF_TCP_SOCK_GET_COMMON(snd_ssthresh);
10590 case offsetof(struct bpf_sock_ops, snd_ssthresh):
10591 SOCK_OPS_GET_TCP_SOCK_FIELD(snd_ssthresh);
/linux-master/include/uapi/linux/
H A Dbpf.h6341 __u32 snd_ssthresh; /* Slow start size threshold */ member in struct:bpf_tcp_sock
6780 __u32 snd_ssthresh; member in struct:bpf_sock_ops
/linux-master/include/net/
H A Dtcp.h1318 return tcp_snd_cwnd(tp) < tp->snd_ssthresh;
1323 return tp->snd_ssthresh >= TCP_INFINITE_SSTHRESH;
1341 return tp->snd_ssthresh;
1343 return max(tp->snd_ssthresh,
/linux-master/include/linux/
H A Dtcp.h246 u32 snd_ssthresh; /* Slow start size threshold */ member in struct:tcp_sock
/linux-master/tools/testing/selftests/bpf/progs/
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 Dtcp_ca_write_sk_pacing.c55 return tcp_sk(sk)->snd_ssthresh;
H A Dtcp_ca_update.c39 return tcp_sk(sk)->snd_ssthresh;
H A Dbpf_dctcp.c153 tp->snd_ssthresh = max(tp->snd_cwnd >> 1U, 2U);
H A Dtcp_ca_incompl_cong_ops.c18 return tcp_sk(sk)->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/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;

Completed in 451 milliseconds

12