[NET] sysctl: make sysctl_somaxconn per-namespace
Just move the variable on the struct net and adjust its usage. Others sysctls from sys.net.core table are more difficult to virtualize (i.e. make them per-namespace), but I'll look at them as well a bit later. Signed-off-by: Pavel Emelyanov <xemul@oenvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
790a353289
commit
b8e1f9b5c3
@@ -127,7 +127,7 @@ static struct ctl_table net_core_table[] = {
|
||||
{
|
||||
.ctl_name = NET_CORE_SOMAXCONN,
|
||||
.procname = "somaxconn",
|
||||
.data = &sysctl_somaxconn,
|
||||
.data = &init_net.sysctl_somaxconn,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec
|
||||
@@ -161,6 +161,8 @@ static __net_init int sysctl_core_net_init(struct net *net)
|
||||
{
|
||||
struct ctl_table *tbl, *tmp;
|
||||
|
||||
net->sysctl_somaxconn = SOMAXCONN;
|
||||
|
||||
tbl = net_core_table;
|
||||
if (net != &init_net) {
|
||||
tbl = kmemdup(tbl, sizeof(net_core_table), GFP_KERNEL);
|
||||
|
Reference in New Issue
Block a user