]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[NET]: Mark the setup_net as __net_init
authorPavel Emelyanov <xemul@openvz.org>
Thu, 1 Nov 2007 07:45:59 +0000 (00:45 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 1 Nov 2007 07:45:59 +0000 (00:45 -0700)
The setup_net is called for the init net namespace
only (int the CONFIG_NET_NS=n of course) from the __init
function, so mark it as __net_init to disappear with the
caller after the boot.

Yet again, in the perfect world this has to be under
#ifdef CONFIG_NET_NS, but it isn't guaranteed that every
subsystem is registered *after* the init_net_ns is set
up. After we are sure, that we don't start registering
them before the init net setup, we'll be able to move
this code under the ifdef.

Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/net_namespace.c

index d5bf8b28bbf45f9fac850b7e18d29053b041d5dc..a044e2d9a8f0ef7e988d394066f7aea1574d58cc 100644 (file)
@@ -25,7 +25,7 @@ EXPORT_SYMBOL_GPL(init_net);
 /*
  * setup_net runs the initializers for the network namespace object.
  */
-static int setup_net(struct net *net)
+static __net_init int setup_net(struct net *net)
 {
        /* Must be called with net_mutex held */
        struct pernet_operations *ops;