tcp: refine tcp_pacing_delay() for very low pacing rates
With the addition of horizon feature to sch_fq, we noticed some
suboptimal behavior of extremely low pacing rate TCP flows, especially
when TCP is not aware of a drop happening in lower stacks.
Back in commit 3f80e08f40
("tcp: add tcp_reset_xmit_timer() helper"),
tcp_pacing_delay() was added to estimate an extra delay to add to standard
rto timers.
This patch removes the skb argument from this helper and
tcp_reset_xmit_timer() because it makes more sense to simply
consider the time at which next packet is allowed to be sent,
instead of the time of whatever packet has been sent.
This avoids arming RTO timer too soon and removes
spurious horizon drops.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
b94c280d0b
commit
8dc242ad66
@@ -3014,7 +3014,7 @@ void tcp_rearm_rto(struct sock *sk)
|
||||
rto = usecs_to_jiffies(max_t(int, delta_us, 1));
|
||||
}
|
||||
tcp_reset_xmit_timer(sk, ICSK_TIME_RETRANS, rto,
|
||||
TCP_RTO_MAX, tcp_rtx_queue_head(sk));
|
||||
TCP_RTO_MAX);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3291,7 +3291,7 @@ static void tcp_ack_probe(struct sock *sk)
|
||||
unsigned long when = tcp_probe0_when(sk, TCP_RTO_MAX);
|
||||
|
||||
tcp_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
|
||||
when, TCP_RTO_MAX, NULL);
|
||||
when, TCP_RTO_MAX);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -2593,8 +2593,7 @@ bool tcp_schedule_loss_probe(struct sock *sk, bool advancing_rto)
|
||||
if (rto_delta_us > 0)
|
||||
timeout = min_t(u32, timeout, usecs_to_jiffies(rto_delta_us));
|
||||
|
||||
tcp_reset_xmit_timer(sk, ICSK_TIME_LOSS_PROBE, timeout,
|
||||
TCP_RTO_MAX, NULL);
|
||||
tcp_reset_xmit_timer(sk, ICSK_TIME_LOSS_PROBE, timeout, TCP_RTO_MAX);
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -3174,8 +3173,7 @@ void tcp_xmit_retransmit_queue(struct sock *sk)
|
||||
icsk->icsk_pending != ICSK_TIME_REO_TIMEOUT)
|
||||
tcp_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
|
||||
inet_csk(sk)->icsk_rto,
|
||||
TCP_RTO_MAX,
|
||||
skb);
|
||||
TCP_RTO_MAX);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3907,7 +3905,7 @@ void tcp_send_probe0(struct sock *sk)
|
||||
*/
|
||||
timeout = TCP_RESOURCE_PROBE_INTERVAL;
|
||||
}
|
||||
tcp_reset_xmit_timer(sk, ICSK_TIME_PROBE0, timeout, TCP_RTO_MAX, NULL);
|
||||
tcp_reset_xmit_timer(sk, ICSK_TIME_PROBE0, timeout, TCP_RTO_MAX);
|
||||
}
|
||||
|
||||
int tcp_rtx_synack(const struct sock *sk, struct request_sock *req)
|
||||
|
Reference in New Issue
Block a user