aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/loopback.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2007-10-08 23:38:39 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:54:58 -0400
commit4665079cbb2a3e17de82f2ab2940b9f97f37d65e (patch)
tree8e51e9b9e6155eaeccf28783620a07b20a067d8d /drivers/net/loopback.c
parentd62a38d1ab350f787e4941e42a3d3e97971e38f5 (diff)
[NETNS]: Move some code into __init section when CONFIG_NET_NS=n
With the net namespaces many code leaved the __init section, thus making the kernel occupy more memory than it did before. Since we have a config option that prohibits the namespace creation, the functions that initialize/finalize some netns stuff are simply not needed and can be freed after the boot. Currently, this is almost not noticeable, since few calls are no longer in __init, but when the namespaces will be merged it will be possible to free more code. I propose to use the __net_init, __net_exit and __net_initdata "attributes" for functions/variables that are not used if the CONFIG_NET_NS is not set to save more space in memory. The exiting functions cannot just reside in the __exit section, as noticed by David, since the init section will have references on it and the compilation will fail due to modpost checks. These references can exist, since the init namespace never dies and the exit callbacks are never called. So I introduce the __exit_refok attribute just like it is already done with the __init_refok. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/loopback.c')
-rw-r--r--drivers/net/loopback.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c
index d6997aec45dd..be25aa33971c 100644
--- a/drivers/net/loopback.c
+++ b/drivers/net/loopback.c
@@ -250,7 +250,7 @@ static void loopback_setup(struct net_device *dev)
250} 250}
251 251
252/* Setup and register the loopback device. */ 252/* Setup and register the loopback device. */
253static int loopback_net_init(struct net *net) 253static __net_init int loopback_net_init(struct net *net)
254{ 254{
255 struct net_device *dev; 255 struct net_device *dev;
256 int err; 256 int err;
@@ -278,14 +278,14 @@ out_free_netdev:
278 goto out; 278 goto out;
279} 279}
280 280
281static void loopback_net_exit(struct net *net) 281static __net_exit void loopback_net_exit(struct net *net)
282{ 282{
283 struct net_device *dev = net->loopback_dev; 283 struct net_device *dev = net->loopback_dev;
284 284
285 unregister_netdev(dev); 285 unregister_netdev(dev);
286} 286}
287 287
288static struct pernet_operations loopback_net_ops = { 288static struct pernet_operations __net_initdata loopback_net_ops = {
289 .init = loopback_net_init, 289 .init = loopback_net_init,
290 .exit = loopback_net_exit, 290 .exit = loopback_net_exit,
291}; 291};