mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
tcp: fix formatting in sysctl_net_ipv4.c
Fix incorrectly formatted tcp_syn_linear_timeouts sysctl in the
ipv4_net_table.
Fixes: ccce324dab
("tcp: make the first N SYN RTO backoffs linear")
Signed-off-by: David Morley <morleyd@google.com>
Signed-off-by: Neal Cardwell <ncardwell@google.com>
Tested-by: David Morley <morleyd@google.com>
Reviewed-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
cad7526f33
commit
0824a987a5
@@ -1472,13 +1472,13 @@ static struct ctl_table ipv4_net_table[] = {
|
||||
.extra2 = &tcp_plb_max_cong_thresh,
|
||||
},
|
||||
{
|
||||
.procname = "tcp_syn_linear_timeouts",
|
||||
.data = &init_net.ipv4.sysctl_tcp_syn_linear_timeouts,
|
||||
.maxlen = sizeof(u8),
|
||||
.mode = 0644,
|
||||
.proc_handler = proc_dou8vec_minmax,
|
||||
.extra1 = SYSCTL_ZERO,
|
||||
.extra2 = &tcp_syn_linear_timeouts_max,
|
||||
.procname = "tcp_syn_linear_timeouts",
|
||||
.data = &init_net.ipv4.sysctl_tcp_syn_linear_timeouts,
|
||||
.maxlen = sizeof(u8),
|
||||
.mode = 0644,
|
||||
.proc_handler = proc_dou8vec_minmax,
|
||||
.extra1 = SYSCTL_ZERO,
|
||||
.extra2 = &tcp_syn_linear_timeouts_max,
|
||||
},
|
||||
{ }
|
||||
};
|
||||
|
Reference in New Issue
Block a user