diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-04-21 17:33:16 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-04-21 17:33:16 -0400 |
commit | 92998dd4951a84cbde447eeac4af5770718864b8 (patch) | |
tree | b0714254e329f385d88c99b0aa55b8951b7fd3fc /net/ipv6 | |
parent | cdd04d98f6922f5a7ba52714f077140d42bc67c9 (diff) |
[NETNS]: Remove empty ->init callback.
The netns start-stop engine can happily live with any of
init or exit callbacks set to NULL.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/addrconf.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 8a0fd4007bdb..e591e09e5e4e 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c | |||
@@ -4338,12 +4338,6 @@ int unregister_inet6addr_notifier(struct notifier_block *nb) | |||
4338 | 4338 | ||
4339 | EXPORT_SYMBOL(unregister_inet6addr_notifier); | 4339 | EXPORT_SYMBOL(unregister_inet6addr_notifier); |
4340 | 4340 | ||
4341 | |||
4342 | static int addrconf_net_init(struct net *net) | ||
4343 | { | ||
4344 | return 0; | ||
4345 | } | ||
4346 | |||
4347 | static void addrconf_net_exit(struct net *net) | 4341 | static void addrconf_net_exit(struct net *net) |
4348 | { | 4342 | { |
4349 | struct net_device *dev; | 4343 | struct net_device *dev; |
@@ -4360,7 +4354,6 @@ static void addrconf_net_exit(struct net *net) | |||
4360 | } | 4354 | } |
4361 | 4355 | ||
4362 | static struct pernet_operations addrconf_net_ops = { | 4356 | static struct pernet_operations addrconf_net_ops = { |
4363 | .init = addrconf_net_init, | ||
4364 | .exit = addrconf_net_exit, | 4357 | .exit = addrconf_net_exit, |
4365 | }; | 4358 | }; |
4366 | 4359 | ||