diff options
Diffstat (limited to 'net/ipv6/sysctl_net_ipv6.c')
| -rw-r--r-- | net/ipv6/sysctl_net_ipv6.c | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/net/ipv6/sysctl_net_ipv6.c b/net/ipv6/sysctl_net_ipv6.c index 058f3eca2e53..0c56c93619e0 100644 --- a/net/ipv6/sysctl_net_ipv6.c +++ b/net/ipv6/sysctl_net_ipv6.c @@ -39,6 +39,13 @@ static struct ctl_table ipv6_table_template[] = {  		.proc_handler	= proc_dointvec  	},  	{ +		.procname	= "auto_flowlabels", +		.data		= &init_net.ipv6.sysctl.auto_flowlabels, +		.maxlen		= sizeof(int), +		.mode		= 0644, +		.proc_handler	= proc_dointvec +	}, +	{  		.procname	= "fwmark_reflect",  		.data		= &init_net.ipv6.sysctl.fwmark_reflect,  		.maxlen		= sizeof(int), @@ -74,6 +81,8 @@ static int __net_init ipv6_sysctl_net_init(struct net *net)  	ipv6_table[0].data = &net->ipv6.sysctl.bindv6only;  	ipv6_table[1].data = &net->ipv6.sysctl.anycast_src_echo_reply;  	ipv6_table[2].data = &net->ipv6.sysctl.flowlabel_consistency; +	ipv6_table[3].data = &net->ipv6.sysctl.auto_flowlabels; +	ipv6_table[4].data = &net->ipv6.sysctl.fwmark_reflect;  	ipv6_route_table = ipv6_route_sysctl_init(net);  	if (!ipv6_route_table)  |