aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@sw.ru>2008-03-03 12:02:54 -0800
committerDavid S. Miller <davem@davemloft.net>2008-03-03 12:02:54 -0800
commit8ed7edce82ca0d8d3adba8c08cd42337af6c758c (patch)
tree35eaab7deb4a2060751d73972f8455c2212e62b6 /net
parent[TCP]: Merge exit paths in tcp_v4_conn_request. (diff)
downloadlinux-dev-8ed7edce82ca0d8d3adba8c08cd42337af6c758c.tar.xz
linux-dev-8ed7edce82ca0d8d3adba8c08cd42337af6c758c.zip
ipv6: fix inet6_init/icmpv6_cleanup sections mismatch
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/ipv6/icmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c
index 9f55a965c884..8f44d49fcee2 100644
--- a/net/ipv6/icmp.c
+++ b/net/ipv6/icmp.c
@@ -844,7 +844,7 @@ static void __net_exit icmpv6_sk_exit(struct net *net)
kfree(net->ipv6.icmp_sk);
}
-static struct pernet_operations __net_initdata icmpv6_sk_ops = {
+static struct pernet_operations icmpv6_sk_ops = {
.init = icmpv6_sk_init,
.exit = icmpv6_sk_exit,
};
@@ -868,7 +868,7 @@ fail:
return err;
}
-void __exit icmpv6_cleanup(void)
+void icmpv6_cleanup(void)
{
unregister_pernet_subsys(&icmpv6_sk_ops);
inet6_del_protocol(&icmpv6_protocol, IPPROTO_ICMPV6);