diff options
author | Eric Dumazet <edumazet@google.com> | 2020-04-30 20:35:43 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-04-30 23:24:01 +0300 |
commit | a70437cc09a11771870e9f6bfc0ba1237161daa8 (patch) | |
tree | 2160cfb6274072fcc4350afbbd5aa7ebf1580a4c /Documentation/networking/ip-sysctl.rst | |
parent | ccd0628fca440268711560a1dbacc727b4f9e214 (diff) | |
download | linux-a70437cc09a11771870e9f6bfc0ba1237161daa8.tar.xz |
tcp: add hrtimer slack to sack compression
Add a sysctl to control hrtimer slack, default of 100 usec.
This gives the opportunity to reduce system overhead,
and help very short RTT flows.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Soheil Hassas Yeganeh <soheil@google.com>
Acked-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/networking/ip-sysctl.rst')
-rw-r--r-- | Documentation/networking/ip-sysctl.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/networking/ip-sysctl.rst b/Documentation/networking/ip-sysctl.rst index 3266aee9e052..50b440d29a13 100644 --- a/Documentation/networking/ip-sysctl.rst +++ b/Documentation/networking/ip-sysctl.rst @@ -651,6 +651,14 @@ tcp_comp_sack_delay_ns - LONG INTEGER Default : 1,000,000 ns (1 ms) +tcp_comp_sack_slack_ns - LONG INTEGER + This sysctl control the slack used when arming the + timer used by SACK compression. This gives extra time + for small RTT flows, and reduces system overhead by allowing + opportunistic reduction of timer interrupts. + + Default : 100,000 ns (100 us) + tcp_comp_sack_nr - INTEGER Max number of SACK that can be compressed. Using 0 disables SACK compression. |