Home
last modified time | relevance | path

Searched refs:TCP_RTO_MAX (Results 1 – 14 of 14) sorted by relevance

/Linux-v6.6/net/ipv4/
Dtcp_timer.c111 if ((s32)(tcp_jiffies32 - tp->lsndtime) > 2*TCP_RTO_MAX || !do_reset) in tcp_out_of_resources()
190 linear_backoff_thresh = ilog2(TCP_RTO_MAX / rto_base); in tcp_model_timeout()
195 (boundary - linear_backoff_thresh) * TCP_RTO_MAX; in tcp_model_timeout()
263 const bool alive = icsk->icsk_rto < TCP_RTO_MAX; in tcp_write_timeout()
401 const bool alive = inet_csk_rto_backoff(icsk, TCP_RTO_MAX) < TCP_RTO_MAX; in tcp_probe_timer()
454 req->timeout << req->num_timeout, TCP_RTO_MAX); in tcp_fastopen_synack_timer()
461 const int timeout = TCP_RTO_MAX * 2; in tcp_rtx_probe0_timed_out()
585 TCP_RTO_MAX); in tcp_retransmit_timer()
623 TCP_RTO_MAX); in tcp_retransmit_timer()
630 icsk->icsk_rto = min(icsk->icsk_rto << 1, TCP_RTO_MAX); in tcp_retransmit_timer()
[all …]
Dtcp_minisocks.c626 tmp_opt.ts_recent_stamp = ktime_get_seconds() - reqsk_timeout(req, TCP_RTO_MAX) / HZ; in tcp_check_req()
665 expires += reqsk_timeout(req, TCP_RTO_MAX); in tcp_check_req()
Dtcp_output.c2844 tcp_reset_xmit_timer(sk, ICSK_TIME_LOSS_PROBE, timeout, TCP_RTO_MAX); in tcp_schedule_loss_probe()
3472 TCP_RTO_MAX); in tcp_xmit_retransmit_queue()
3995 inet_csk(sk)->icsk_rto, TCP_RTO_MAX); in tcp_connect()
4076 if (delay < TCP_RTO_MAX) in __tcp_send_ack()
4080 inet_csk_reset_xmit_timer(sk, ICSK_TIME_DACK, delay, TCP_RTO_MAX); in __tcp_send_ack()
4216 timeout = tcp_probe0_when(sk, TCP_RTO_MAX); in tcp_send_probe0()
4225 tcp_reset_xmit_timer(sk, ICSK_TIME_PROBE0, timeout, TCP_RTO_MAX); in tcp_send_probe0()
Dtcp_fastopen.c277 req->timeout, TCP_RTO_MAX); in tcp_fastopen_create_child()
Dtcp_input.c2219 delay, TCP_RTO_MAX); in tcp_check_sack_reneging()
3202 TCP_RTO_MAX); in tcp_rearm_rto()
3479 unsigned long when = tcp_probe0_when(sk, TCP_RTO_MAX); in tcp_ack_probe()
3482 tcp_reset_xmit_timer(sk, ICSK_TIME_PROBE0, when, TCP_RTO_MAX); in tcp_ack_probe()
6246 TCP_TIMEOUT_MIN, TCP_RTO_MAX); in tcp_rcv_synsent_state_process()
6359 TCP_DELACK_MAX, TCP_RTO_MAX); in tcp_rcv_synsent_state_process()
Dinet_connection_sock.c1062 mod_timer(&req->rsk_timer, jiffies + reqsk_timeout(req, TCP_RTO_MAX)); in reqsk_timer_handler()
Dtcp_ipv4.c441 icsk->icsk_rto = inet_csk_rto_backoff(icsk, TCP_RTO_MAX); in tcp_ld_RTO_revert()
449 remaining, TCP_RTO_MAX); in tcp_ld_RTO_revert()
Dtcp.c3481 TCP_RTO_MAX / HZ)); in do_tcp_setsockopt()
3983 TCP_RTO_MAX / HZ); in do_tcp_getsockopt()
/Linux-v6.6/net/mptcp/
Dctrl.c81 pernet->add_addr_timeout = TCP_RTO_MAX; in mptcp_pernet_set_defaults()
Dsubflow.c1223 fail_tout = jiffies + TCP_RTO_MAX; in mptcp_subflow_fail()
Dpm_netlink.c299 sk_reset_timer(sk, timer, jiffies + TCP_RTO_MAX / 8); in mptcp_pm_add_timer()
Dprotocol.c486 ilog2(TCP_RTO_MAX / TCP_RTO_MIN)); in mptcp_set_datafin_timeout()
/Linux-v6.6/Documentation/networking/
Dmptcp-sysctl.rst23 The default value matches TCP_RTO_MAX. This is a per-namespace
/Linux-v6.6/include/net/
Dtcp.h141 #define TCP_RTO_MAX ((unsigned)(120*HZ)) macro
690 if (inet_csk(sk)->icsk_rto > TCP_RTO_MAX) in tcp_bound_rto()
691 inet_csk(sk)->icsk_rto = TCP_RTO_MAX; in tcp_bound_rto()
1359 u8 backoff = min_t(u8, ilog2(TCP_RTO_MAX / TCP_RTO_MIN) + 1, in tcp_probe0_when()
1370 tcp_probe0_base(sk), TCP_RTO_MAX); in tcp_check_probe_timer()
1642 TCP_ADD_STATS(net, TCP_MIB_RTOMAX, TCP_RTO_MAX*1000/HZ); in tcp_mib_init()
2475 return min_t(int, timeout, TCP_RTO_MAX); in tcp_timeout_init()