Home
last modified time | relevance | path

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

/openbmc/linux/net/ipv4/
H A Dtcp_timer.c107 if ((s32)(tcp_jiffies32 - tp->lsndtime) > 2*TCP_RTO_MAX || !do_reset) in tcp_out_of_resources()
186 linear_backoff_thresh = ilog2(TCP_RTO_MAX / rto_base); in tcp_model_timeout()
191 (boundary - linear_backoff_thresh) * TCP_RTO_MAX; in tcp_model_timeout()
259 const bool alive = icsk->icsk_rto < TCP_RTO_MAX; in tcp_write_timeout()
397 const bool alive = inet_csk_rto_backoff(icsk, TCP_RTO_MAX) < TCP_RTO_MAX; in tcp_probe_timer()
463 req->timeout << req->num_timeout, TCP_RTO_MAX); in tcp_fastopen_synack_timer()
472 int timeout = TCP_RTO_MAX * 2; in tcp_rtx_probe0_timed_out()
609 TCP_RTO_MAX); in tcp_retransmit_timer()
647 TCP_RTO_MAX); in tcp_retransmit_timer()
654 icsk->icsk_rto = min(icsk->icsk_rto << 1, TCP_RTO_MAX); in tcp_retransmit_timer()
[all …]
H A Dtcp_minisocks.c625 tmp_opt.ts_recent_stamp = ktime_get_seconds() - reqsk_timeout(req, TCP_RTO_MAX) / HZ; in tcp_check_req()
664 expires += reqsk_timeout(req, TCP_RTO_MAX); in tcp_check_req()
H A Dtcp_output.c2849 tcp_reset_xmit_timer(sk, ICSK_TIME_LOSS_PROBE, timeout, TCP_RTO_MAX); in tcp_schedule_loss_probe()
3483 TCP_RTO_MAX); in tcp_xmit_retransmit_queue()
4008 inet_csk(sk)->icsk_rto, TCP_RTO_MAX); in tcp_connect()
4103 if (delay < TCP_RTO_MAX) in __tcp_send_ack()
4107 inet_csk_reset_xmit_timer(sk, ICSK_TIME_DACK, delay, TCP_RTO_MAX); in __tcp_send_ack()
4243 timeout = tcp_probe0_when(sk, TCP_RTO_MAX); in tcp_send_probe0()
4252 tcp_reset_xmit_timer(sk, ICSK_TIME_PROBE0, timeout, TCP_RTO_MAX); in tcp_send_probe0()
H A Dtcp_fastopen.c278 req->timeout, TCP_RTO_MAX); in tcp_fastopen_create_child()
H A Dtcp_input.c2245 delay, TCP_RTO_MAX); in tcp_check_sack_reneging()
3282 TCP_RTO_MAX); in tcp_rearm_rto()
3559 unsigned long when = tcp_probe0_when(sk, TCP_RTO_MAX); in tcp_ack_probe()
3562 tcp_reset_xmit_timer(sk, ICSK_TIME_PROBE0, when, TCP_RTO_MAX); in tcp_ack_probe()
6346 TCP_TIMEOUT_MIN, TCP_RTO_MAX); in tcp_rcv_synsent_state_process()
6460 TCP_DELACK_MAX, TCP_RTO_MAX); in tcp_rcv_synsent_state_process()
H A Dinet_connection_sock.c1093 mod_timer(&req->rsk_timer, jiffies + reqsk_timeout(req, TCP_RTO_MAX)); in reqsk_timer_handler()
H A Dtcp_ipv4.c452 icsk->icsk_rto = inet_csk_rto_backoff(icsk, TCP_RTO_MAX); in tcp_ld_RTO_revert()
460 remaining, TCP_RTO_MAX); in tcp_ld_RTO_revert()
H A Dtcp.c3536 TCP_RTO_MAX / HZ)); in do_tcp_setsockopt()
4048 TCP_RTO_MAX / HZ); in do_tcp_getsockopt()
/openbmc/linux/Documentation/networking/
H A Dmptcp-sysctl.rst23 The default value matches TCP_RTO_MAX. This is a per-namespace
/openbmc/linux/net/mptcp/
H A Dctrl.c81 pernet->add_addr_timeout = TCP_RTO_MAX; in mptcp_pernet_set_defaults()
H A Dsubflow.c1271 fail_tout = jiffies + TCP_RTO_MAX; in mptcp_subflow_fail()
H A Dpm_netlink.c310 sk_reset_timer(sk, timer, jiffies + TCP_RTO_MAX / 8); in mptcp_pm_add_timer()
H A Dprotocol.c475 ilog2(TCP_RTO_MAX / TCP_RTO_MIN)); in mptcp_set_datafin_timeout()
/openbmc/linux/include/net/
H A Dtcp.h142 #define TCP_RTO_MAX ((unsigned)(120*HZ)) macro
708 if (inet_csk(sk)->icsk_rto > TCP_RTO_MAX) in tcp_bound_rto()
709 inet_csk(sk)->icsk_rto = TCP_RTO_MAX; in tcp_bound_rto()
1379 u8 backoff = min_t(u8, ilog2(TCP_RTO_MAX / TCP_RTO_MIN) + 1, in tcp_probe0_when()
1390 tcp_probe0_base(sk), TCP_RTO_MAX); in tcp_check_probe_timer()
1668 TCP_ADD_STATS(net, TCP_MIB_RTOMAX, TCP_RTO_MAX*1000/HZ); in tcp_mib_init()
2523 return min_t(int, timeout, TCP_RTO_MAX); in tcp_timeout_init()