diff options
author | Daniel Lezcano <dlezcano@fr.ibm.com> | 2007-09-13 03:16:29 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:49:21 -0400 |
commit | 4fabcd7118162e36eea5c53e8895ecc13762bef3 (patch) | |
tree | 29a1b009e9bbd52bcce413f9b06c892b09783ccd /include/net/net_namespace.h | |
parent | e08b09983fe9cf379faf1aefdf9164268d4610e7 (diff) |
[NETNS]: Fix allnoconfig compilation error.
When CONFIG_NET=no, init_net is unresolved because net_namespace.c
is not compiled and the include pull init_net definition.
This problem was very similar with the ipc namespace where the kernel
can be compiled with SYSV ipc out.
This patch fix that defining a macro which simply remove init_net
initialization from nsproxy namespace aggregator.
Compiled and booted on qemu-i386 with CONFIG_NET=no and CONFIG_NET=yes.
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Acked-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/net_namespace.h')
-rw-r--r-- | include/net/net_namespace.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h index fac42db7f6d0..3081b6ed35fe 100644 --- a/include/net/net_namespace.h +++ b/include/net/net_namespace.h | |||
@@ -28,7 +28,14 @@ struct net { | |||
28 | struct hlist_head *dev_index_head; | 28 | struct hlist_head *dev_index_head; |
29 | }; | 29 | }; |
30 | 30 | ||
31 | #ifdef CONFIG_NET | ||
32 | /* Init's network namespace */ | ||
31 | extern struct net init_net; | 33 | extern struct net init_net; |
34 | #define INIT_NET_NS(net_ns) .net_ns = &init_net, | ||
35 | #else | ||
36 | #define INIT_NET_NS(net_ns) | ||
37 | #endif | ||
38 | |||
32 | extern struct list_head net_namespace_list; | 39 | extern struct list_head net_namespace_list; |
33 | 40 | ||
34 | extern void __put_net(struct net *net); | 41 | extern void __put_net(struct net *net); |