diff options
Diffstat (limited to 'net/ipv6/sysctl_net_ipv6.c')
| -rw-r--r-- | net/ipv6/sysctl_net_ipv6.c | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/net/ipv6/sysctl_net_ipv6.c b/net/ipv6/sysctl_net_ipv6.c index 6fbdef630152..e15cd37024fd 100644 --- a/net/ipv6/sysctl_net_ipv6.c +++ b/net/ipv6/sysctl_net_ipv6.c @@ -152,6 +152,13 @@ static struct ctl_table ipv6_table_template[] = {  		.extra1		= &zero,  		.extra2		= &one,  	}, +	{ +		.procname	= "seg6_flowlabel", +		.data		= &init_net.ipv6.sysctl.seg6_flowlabel, +		.maxlen		= sizeof(int), +		.mode		= 0644, +		.proc_handler	= proc_dointvec +	},  	{ }  }; @@ -217,6 +224,7 @@ static int __net_init ipv6_sysctl_net_init(struct net *net)  	ipv6_table[12].data = &net->ipv6.sysctl.max_dst_opts_len;  	ipv6_table[13].data = &net->ipv6.sysctl.max_hbh_opts_len;  	ipv6_table[14].data = &net->ipv6.sysctl.multipath_hash_policy, +	ipv6_table[15].data = &net->ipv6.sysctl.seg6_flowlabel;  	ipv6_route_table = ipv6_route_sysctl_init(net);  	if (!ipv6_route_table)  | 
