* [PATCH] net: Fix build without CONFIG_NET_NS
@ 2009-02-24 2:26 Benjamin Herrenschmidt
2009-02-24 2:39 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Benjamin Herrenschmidt @ 2009-02-24 2:26 UTC (permalink / raw)
To: David Miller; +Cc: linux-kernel, netdev, Linus Torvalds
Commit 486a87f1e5624096bd1c09e9e716239597d48dca broke build without
CONFIG_NET_NS due to calling net_alloc_generic() always while defining
it inside an #ifdef CONFIG_NET_NS block. This moves the function
definition out of that block.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
net/core/net_namespace.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
--- linux-work.orig/net/core/net_namespace.c 2009-02-24 13:20:42.000000000 +1100
+++ linux-work/net/core/net_namespace.c 2009-02-24 13:24:19.000000000 +1100
@@ -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_gen
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;
@@ -218,7 +218,7 @@ static int __init net_ns_init(void)
netns_wq = create_singlethread_workqueue("netns");
if (!netns_wq)
panic("Could not create netns workq");
-#endif
+#endif /* CONFIG_NET_NS */
ng = net_alloc_generic();
if (!ng)
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH] net: Fix build without CONFIG_NET_NS
2009-02-24 2:26 [PATCH] net: Fix build without CONFIG_NET_NS Benjamin Herrenschmidt
@ 2009-02-24 2:39 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2009-02-24 2:39 UTC (permalink / raw)
To: benh; +Cc: linux-kernel, netdev, torvalds
From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Date: Tue, 24 Feb 2009 13:26:45 +1100
> Commit 486a87f1e5624096bd1c09e9e716239597d48dca broke build without
> CONFIG_NET_NS due to calling net_alloc_generic() always while defining
> it inside an #ifdef CONFIG_NET_NS block. This moves the function
> definition out of that block.
>
> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Yep, sorry about that.
commit ebe47d47b7b7fed72dabcce4717da727b4e2367d
Author: Clemens Noss <cnoss@gmx.de>
Date: Mon Feb 23 15:37:35 2009 -0800
netns: build fix for net_alloc_generic
net_alloc_generic was defined in #ifdef CONFIG_NET_NS, but used
unconditionally. Move net_alloc_generic out of #ifdef.
Signed-off-by: Clemens Noss <cnoss@gmx.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c
index b0767ab..2adb1a7 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;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-02-24 2:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-24 2:26 [PATCH] net: Fix build without CONFIG_NET_NS Benjamin Herrenschmidt
2009-02-24 2:39 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®