summaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorPavel Emelyanov2007-12-08 09:12:33 +0100
committerDavid S. Miller2008-01-28 23:56:57 +0100
commitb8e1f9b5c37e77cc8f978a58859b35fe5edd5542 (patch)
tree3c39da61f10eeb8b8e200ec68770128f1b57f25d /include/net
parent[NET] sysctl: prepare core tables to point to netns variables (diff)
downloadkernel-qcow2-linux-b8e1f9b5c37e77cc8f978a58859b35fe5edd5542.tar.gz
kernel-qcow2-linux-b8e1f9b5c37e77cc8f978a58859b35fe5edd5542.tar.xz
kernel-qcow2-linux-b8e1f9b5c37e77cc8f978a58859b35fe5edd5542.zip
[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>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/net_namespace.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h
index d5936115d972..b62e31fca474 100644
--- a/include/net/net_namespace.h
+++ b/include/net/net_namespace.h
@@ -39,6 +39,7 @@ struct net {
/* core sysctls */
struct ctl_table_header *sysctl_core_hdr;
+ int sysctl_somaxconn;
/* List of all packet sockets. */
rwlock_t packet_sklist_lock;