diff options
author | Eric Dumazet <edumazet@google.com> | 2021-03-31 19:52:11 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-31 23:48:20 +0200 |
commit | 1c3289c931740f235b29be5182e5f2dfb004593d (patch) | |
tree | d0c2f6d9cc7dc2e2d5794021b914d27ed91e30dc /include/net/netns/ipv4.h | |
parent | ipv4: convert igmp_link_local_mcast_reports sysctl to u8 (diff) | |
download | linux-1c3289c931740f235b29be5182e5f2dfb004593d.tar.xz linux-1c3289c931740f235b29be5182e5f2dfb004593d.zip |
tcp: convert tcp_comp_sack_nr sysctl to u8
tcp_comp_sack_nr max value was already 255.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/netns/ipv4.h')
-rw-r--r-- | include/net/netns/ipv4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/netns/ipv4.h b/include/net/netns/ipv4.h index fafcedf64383..87e1612497ea 100644 --- a/include/net/netns/ipv4.h +++ b/include/net/netns/ipv4.h @@ -171,12 +171,12 @@ struct netns_ipv4 { u8 sysctl_tcp_min_tso_segs; u8 sysctl_tcp_autocorking; u8 sysctl_tcp_reflect_tos; + u8 sysctl_tcp_comp_sack_nr; int sysctl_tcp_invalid_ratelimit; int sysctl_tcp_pacing_ss_ratio; int sysctl_tcp_pacing_ca_ratio; int sysctl_tcp_wmem[3]; int sysctl_tcp_rmem[3]; - int sysctl_tcp_comp_sack_nr; unsigned long sysctl_tcp_comp_sack_delay_ns; unsigned long sysctl_tcp_comp_sack_slack_ns; int sysctl_max_syn_backlog; |