diff options
Diffstat (limited to 'net/dccp/ipv6.c')
-rw-r--r-- | net/dccp/ipv6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c index cf598bfc6a18..94d749e6d494 100644 --- a/net/dccp/ipv6.c +++ b/net/dccp/ipv6.c | |||
@@ -1185,7 +1185,7 @@ static int __init dccp_v6_init(void) | |||
1185 | inet6_register_protosw(&dccp_v6_protosw); | 1185 | inet6_register_protosw(&dccp_v6_protosw); |
1186 | 1186 | ||
1187 | err = inet_ctl_sock_create(&dccp_v6_ctl_sk, PF_INET6, | 1187 | err = inet_ctl_sock_create(&dccp_v6_ctl_sk, PF_INET6, |
1188 | SOCK_DCCP, IPPROTO_DCCP); | 1188 | SOCK_DCCP, IPPROTO_DCCP, &init_net); |
1189 | if (err != 0) | 1189 | if (err != 0) |
1190 | goto out_unregister_protosw; | 1190 | goto out_unregister_protosw; |
1191 | out: | 1191 | out: |
@@ -1200,7 +1200,7 @@ out_unregister_proto: | |||
1200 | 1200 | ||
1201 | static void __exit dccp_v6_exit(void) | 1201 | static void __exit dccp_v6_exit(void) |
1202 | { | 1202 | { |
1203 | sock_release(dccp_v6_ctl_sk->sk_socket); | 1203 | inet_ctl_sock_destroy(dccp_v6_ctl_sk); |
1204 | inet6_del_protocol(&dccp_v6_protocol, IPPROTO_DCCP); | 1204 | inet6_del_protocol(&dccp_v6_protocol, IPPROTO_DCCP); |
1205 | inet6_unregister_protosw(&dccp_v6_protosw); | 1205 | inet6_unregister_protosw(&dccp_v6_protosw); |
1206 | proto_unregister(&dccp_v6_prot); | 1206 | proto_unregister(&dccp_v6_prot); |