dect
/
linux-2.6
Archived
13
0
Fork 0

[ICMP]: Section conflict between icmp_sk_init/icmp_sk_exit.

Functions from __exit section should not be called from ones in __init
section. Fix this conflict.

Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Denis V. Lunev 2008-02-29 14:15:19 -08:00 committed by David S. Miller
parent 4a80f27889
commit 1d1c8d13c4
1 changed files with 3 additions and 1 deletions

View File

@ -1198,7 +1198,9 @@ int __net_init icmp_sk_init(struct net *net)
return 0;
fail:
icmp_sk_exit(net);
for_each_possible_cpu(i)
sk_release_kernel(net->ipv4.icmp_sk[i]);
kfree(net->ipv4.icmp_sk);
return err;
}