diff options
author | Eric Dumazet <edumazet@google.com> | 2018-05-17 17:47:28 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-05-18 11:40:27 -0400 |
commit | 6d82aa242092d73c6d2e210cfaf0ebfbe6de1ccf (patch) | |
tree | 5babdd50e69dd7ab9b6db82f3b665d9c80be6bad /net/ipv4/tcp_input.c | |
parent | 200d95f4575934e49f872109cce18c5e72383eb8 (diff) |
tcp: add tcp_comp_sack_delay_ns sysctl
This per netns sysctl allows for TCP SACK compression fine-tuning.
Its default value is 1,000,000, or 1 ms to meet TSO autosizing period.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r-- | net/ipv4/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index cc2ac5346b92..6a1dae38c955 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
@@ -5113,13 +5113,13 @@ send_now: | |||
5113 | if (hrtimer_is_queued(&tp->compressed_ack_timer)) | 5113 | if (hrtimer_is_queued(&tp->compressed_ack_timer)) |
5114 | return; | 5114 | return; |
5115 | 5115 | ||
5116 | /* compress ack timer : 5 % of rtt, but no more than 1 ms */ | 5116 | /* compress ack timer : 5 % of rtt, but no more than tcp_comp_sack_delay_ns */ |
5117 | 5117 | ||
5118 | rtt = tp->rcv_rtt_est.rtt_us; | 5118 | rtt = tp->rcv_rtt_est.rtt_us; |
5119 | if (tp->srtt_us && tp->srtt_us < rtt) | 5119 | if (tp->srtt_us && tp->srtt_us < rtt) |
5120 | rtt = tp->srtt_us; | 5120 | rtt = tp->srtt_us; |
5121 | 5121 | ||
5122 | delay = min_t(unsigned long, NSEC_PER_MSEC, | 5122 | delay = min_t(unsigned long, sock_net(sk)->ipv4.sysctl_tcp_comp_sack_delay_ns, |
5123 | rtt * (NSEC_PER_USEC >> 3)/20); | 5123 | rtt * (NSEC_PER_USEC >> 3)/20); |
5124 | sock_hold(sk); | 5124 | sock_hold(sk); |
5125 | hrtimer_start(&tp->compressed_ack_timer, ns_to_ktime(delay), | 5125 | hrtimer_start(&tp->compressed_ack_timer, ns_to_ktime(delay), |