[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1294855525.3981.119.camel@edumazet-laptop>
Date: Wed, 12 Jan 2011 19:05:25 +0100
From: Eric Dumazet <eric.dumazet@...il.com>
To: William Allen Simpson <william.allen.simpson@...il.com>
Cc: Linux Kernel Developers <linux-kernel@...r.kernel.org>,
Linux Kernel Network Developers <netdev@...r.kernel.org>,
David Miller <davem@...emloft.net>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: Re: [PATCH v1 1/2] TCPCT API sysctl update to draft -03
Le mercredi 12 janvier 2011 à 12:52 -0500, William Allen Simpson a
écrit :
> Use most recently specified symbols of RFC-to-be-6013.
>
> Allows different global s_data limits for SYN and SYN_ACK.
>
> CC: "Eric W. Biederman" <ebiederm@...ssion.com>
> CC: Stephen Hemminger <shemminger@...tta.com>
> CC: Andi Kleen <andi@...stfloor.org>
> Signed-off-by: William.Allen.Simpson@...il.com
Should be :
Signed-off-by: William Allen Simpson <William.Allen.Simpson@...il.com>
> ---
> Documentation/networking/ip-sysctl.txt | 10 ++++++++++
> include/net/tcp.h | 2 ++
> net/ipv4/sysctl_net_ipv4.c | 25 ++++++++++++++++++++++++-
> net/ipv4/tcp_output.c | 19 +++++++++++++++++--
> 4 files changed, 53 insertions(+), 3 deletions(-)
Hmm, patch is not inlined, so I have to copy/paste
+static int tcp_cookie_max = TCP_COOKIE_MAX;
...
/* Update system visible IP port range */
static void set_local_port_range(int range[2])
@@ -588,7 +591,27 @@ static struct ctl_table ipv4_table[] = {
.data = &sysctl_tcp_cookie_size,
.maxlen = sizeof(int),
.mode = 0644,
- .proc_handler = proc_dointvec
+ .proc_handler = proc_dointvec_minmax,
+ .extra1 = &zero,
+ .extra2 = &tcp_cookie_max,
+ },
Now sysctl_tcp_cookie_size has a max limit of TCP_COOKIE_MAX, you can
remove the now uneeded check in :
static u8 tcp_cookie_size_check(u8 desired)
...
if (cookie_size >= TCP_COOKIE_MAX)
/* value too large, specify maximum */
return TCP_COOKIE_MAX;
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists