aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-02-23 20:29:21 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2009-02-23 20:29:21 -0800
commitf7e603ad8f78cd3b59e33fa72707da0cbabdf699 (patch)
treeb7ddd5d835137f324424b3a93436dcca581ec1b6 /net
parentproc: proc_get_inode should de_put when inode already initialized (diff)
parentnet: amend the fix for SO_BSDCOMPAT gsopt infoleak (diff)
downloadlinux-dev-f7e603ad8f78cd3b59e33fa72707da0cbabdf699.tar.xz
linux-dev-f7e603ad8f78cd3b59e33fa72707da0cbabdf699.zip
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: net: amend the fix for SO_BSDCOMPAT gsopt infoleak netns: build fix for net_alloc_generic
Diffstat (limited to 'net')
-rw-r--r--net/core/net_namespace.c8
-rw-r--r--net/core/sock.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c
index b0767abf23e5..2adb1a7d361f 100644
--- a/net/core/net_namespace.c
+++ b/net/core/net_namespace.c
@@ -63,10 +63,6 @@ out_undo:
goto out;
}
-#ifdef CONFIG_NET_NS
-static struct kmem_cache *net_cachep;
-static struct workqueue_struct *netns_wq;
-
static struct net_generic *net_alloc_generic(void)
{
struct net_generic *ng;
@@ -80,6 +76,10 @@ static struct net_generic *net_alloc_generic(void)
return ng;
}
+#ifdef CONFIG_NET_NS
+static struct kmem_cache *net_cachep;
+static struct workqueue_struct *netns_wq;
+
static struct net *net_alloc(void)
{
struct net *net = NULL;
diff --git a/net/core/sock.c b/net/core/sock.c
index 6e4f14d1ef81..5f97caa158e8 100644
--- a/net/core/sock.c
+++ b/net/core/sock.c
@@ -696,7 +696,7 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
if (len < 0)
return -EINVAL;
- v.val = 0;
+ memset(&v, 0, sizeof(v));
switch(optname) {
case SO_DEBUG: