lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Sat, 12 Dec 2009 19:27:49 -0800
From:	ebiederm@...ssion.com (Eric W. Biederman)
To:	chavey@...gle.com
Cc:	davem@...emloft.net, netdev@...r.kernel.org, therbert@...gle.com,
	joe@...ches.com, eric.dumazet@...il.com
Subject: Re: [PATCH] Add sysctl to set the advertised TCP initial receive window.

chavey@...gle.com writes:
>  
>  /* Update system visible IP port range */
>  static void set_local_port_range(int range[2])
> @@ -656,6 +658,16 @@ static struct ctl_table ipv4_table[] = {
>  		.mode		= 0644,
>  		.proc_handler	= proc_dointvec
>  	},
> +	{
> +		.ctl_name	= CTL_UNNUMBERED,
> +		.procname	= "tcp_init_rcv_wnd",
> +		.data 		= &sysctl_tcp_init_rcv_wnd,
> +		.maxlen 	= sizeof(int),
> +		.mode 		= 0644,
> +		.proc_handler 	= proc_dointvec_minmax,
> +		.extra1		= &zero,
> +		.extra2		= &tcp_init_rcv_wnd_max
> +	},
>  #ifdef CONFIG_NETLABEL
>  	{
>  		.ctl_name	= NET_CIPSOV4_CACHE_ENABLE,

It looks like this won't be solved with a sysctl now, but I want to
mention that ctl_name is now gone.  So this patch won't compile in
mainline any more.

Eric
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ