Searched refs:TCP_RTO_MAX (Results 1 – 13 of 13) sorted by relevance
| /Linux-v5.15/net/ipv4/ |
| D | tcp_timer.c | 109 if ((s32)(tcp_jiffies32 - tp->lsndtime) > 2*TCP_RTO_MAX || !do_reset) in tcp_out_of_resources() 188 linear_backoff_thresh = ilog2(TCP_RTO_MAX / rto_base); in tcp_model_timeout() 193 (boundary - linear_backoff_thresh) * TCP_RTO_MAX; in tcp_model_timeout() 254 const bool alive = icsk->icsk_rto < TCP_RTO_MAX; in tcp_write_timeout() 385 const bool alive = inet_csk_rto_backoff(icsk, TCP_RTO_MAX) < TCP_RTO_MAX; in tcp_probe_timer() 433 TCP_TIMEOUT_INIT << req->num_timeout, TCP_RTO_MAX); in tcp_fastopen_synack_timer() 501 if (tcp_jiffies32 - tp->rcv_tstamp > TCP_RTO_MAX) { in tcp_retransmit_timer() 545 TCP_RTO_MAX); in tcp_retransmit_timer() 581 icsk->icsk_rto = min(__tcp_set_rto(tp), TCP_RTO_MAX); in tcp_retransmit_timer() 584 icsk->icsk_rto = min(icsk->icsk_rto << 1, TCP_RTO_MAX); in tcp_retransmit_timer() [all …]
|
| D | tcp_output.c | 2771 tcp_reset_xmit_timer(sk, ICSK_TIME_LOSS_PROBE, timeout, TCP_RTO_MAX); in tcp_schedule_loss_probe() 3355 TCP_RTO_MAX); in tcp_xmit_retransmit_queue() 3872 inet_csk(sk)->icsk_rto, TCP_RTO_MAX); in tcp_connect() 3953 if (delay < TCP_RTO_MAX) in __tcp_send_ack() 3957 inet_csk_reset_xmit_timer(sk, ICSK_TIME_DACK, delay, TCP_RTO_MAX); in __tcp_send_ack() 4093 timeout = tcp_probe0_when(sk, TCP_RTO_MAX); in tcp_send_probe0() 4102 tcp_reset_xmit_timer(sk, ICSK_TIME_PROBE0, timeout, TCP_RTO_MAX); in tcp_send_probe0()
|
| D | tcp_fastopen.c | 282 TCP_TIMEOUT_INIT, TCP_RTO_MAX); in tcp_fastopen_create_child()
|
| D | tcp_minisocks.c | 633 TCP_RTO_MAX); in tcp_check_req()
|
| D | tcp_input.c | 2187 delay, TCP_RTO_MAX); in tcp_check_sack_reneging() 3155 TCP_RTO_MAX); in tcp_rearm_rto() 3433 unsigned long when = tcp_probe0_when(sk, TCP_RTO_MAX); in tcp_ack_probe() 3436 tcp_reset_xmit_timer(sk, ICSK_TIME_PROBE0, when, TCP_RTO_MAX); in tcp_ack_probe() 6118 TCP_TIMEOUT_MIN, TCP_RTO_MAX); in tcp_rcv_synsent_state_process() 6228 TCP_DELACK_MAX, TCP_RTO_MAX); in tcp_rcv_synsent_state_process()
|
| D | inet_connection_sock.c | 873 timeo = min(TCP_TIMEOUT_INIT << req->num_timeout, TCP_RTO_MAX); in reqsk_timer_handler()
|
| D | tcp_ipv4.c | 429 icsk->icsk_rto = inet_csk_rto_backoff(icsk, TCP_RTO_MAX); in tcp_ld_RTO_revert() 437 remaining, TCP_RTO_MAX); in tcp_ld_RTO_revert()
|
| D | tcp.c | 3559 TCP_RTO_MAX / HZ); in do_tcp_setsockopt() 3956 TCP_TIMEOUT_INIT / HZ, TCP_RTO_MAX / HZ); in do_tcp_getsockopt()
|
| /Linux-v5.15/net/mptcp/ |
| D | ctrl.c | 64 pernet->add_addr_timeout = TCP_RTO_MAX; in mptcp_pernet_set_defaults()
|
| D | pm_netlink.c | 321 sk_reset_timer(sk, timer, jiffies + TCP_RTO_MAX / 8); in mptcp_pm_add_timer()
|
| D | protocol.c | 410 mptcp_sk(sk)->timer_ival = min(TCP_RTO_MAX, in mptcp_set_datafin_timeout()
|
| /Linux-v5.15/Documentation/networking/ |
| D | mptcp-sysctl.rst | 23 The default value matches TCP_RTO_MAX. This is a per-namespace
|
| /Linux-v5.15/include/net/ |
| D | tcp.h | 139 #define TCP_RTO_MAX ((unsigned)(120*HZ)) macro 678 if (inet_csk(sk)->icsk_rto > TCP_RTO_MAX) in tcp_bound_rto() 679 inet_csk(sk)->icsk_rto = TCP_RTO_MAX; in tcp_bound_rto() 1326 u8 backoff = min_t(u8, ilog2(TCP_RTO_MAX / TCP_RTO_MIN) + 1, in tcp_probe0_when() 1337 tcp_probe0_base(sk), TCP_RTO_MAX); in tcp_check_probe_timer() 1550 TCP_ADD_STATS(net, TCP_MIB_RTOMAX, TCP_RTO_MAX*1000/HZ); in tcp_mib_init()
|