Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 90663
b: refs/heads/master
c: 8231bd2
h: refs/heads/master
i:
  90661: f8d2982
  90659: 7fe37ef
  90655: ca2d980
v: v3
  • Loading branch information
Pavel Emelyanov authored and David S. Miller committed Apr 14, 2008
1 parent bc324d7 commit e64cfad
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 68d185980f70413b353df99cdf5e667510036668
refs/heads/master: 8231bd270df435f2d4d85b284dd9dbd48521dd84
22 changes: 22 additions & 0 deletions trunk/net/dccp/ipv6.c
Original file line number Diff line number Diff line change
Expand Up @@ -1171,6 +1171,20 @@ static struct inet_protosw dccp_v6_protosw = {
.flags = INET_PROTOSW_ICSK,
};

static int dccp_v6_init_net(struct net *net)
{
return 0;
}

static void dccp_v6_exit_net(struct net *net)
{
}

static struct pernet_operations dccp_v6_ops = {
.init = dccp_v6_init_net,
.exit = dccp_v6_exit_net,
};

static int __init dccp_v6_init(void)
{
int err = proto_register(&dccp_v6_prot, 1);
Expand All @@ -1188,8 +1202,15 @@ static int __init dccp_v6_init(void)
SOCK_DCCP, IPPROTO_DCCP, &init_net);
if (err != 0)
goto out_unregister_protosw;

err = register_pernet_subsys(&dccp_v6_ops);
if (err != 0)
goto out_destroy_ctl_sock;
out:
return err;

out_destroy_ctl_sock:
inet_ctl_sock_destroy(dccp_v6_ctl_sk);
out_unregister_protosw:
inet6_del_protocol(&dccp_v6_protocol, IPPROTO_DCCP);
inet6_unregister_protosw(&dccp_v6_protosw);
Expand All @@ -1200,6 +1221,7 @@ static int __init dccp_v6_init(void)

static void __exit dccp_v6_exit(void)
{
unregister_pernet_subsys(&dccp_v6_ops);
inet_ctl_sock_destroy(dccp_v6_ctl_sk);
inet6_del_protocol(&dccp_v6_protocol, IPPROTO_DCCP);
inet6_unregister_protosw(&dccp_v6_protosw);
Expand Down

0 comments on commit e64cfad

Please sign in to comment.