Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 90665
b: refs/heads/master
c: 334527d
h: refs/heads/master
i:
  90663: e64cfad
v: v3
  • Loading branch information
Pavel Emelyanov authored and David S. Miller committed Apr 14, 2008
1 parent a21feac commit a58f3f4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0204774191d3e7bc69e3ae6bbf328b635607505a
refs/heads/master: 334527d3511ecbffca68d6c8f75046262510cf41
18 changes: 8 additions & 10 deletions trunk/net/dccp/ipv6.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,8 @@ static void dccp_v6_ctl_send_reset(struct sock *sk, struct sk_buff *rxskb)
struct ipv6hdr *rxip6h;
struct sk_buff *skb;
struct flowi fl;
struct sock *ctl_sk = init_net.dccp.v6_ctl_sk;
struct net *net = dev_net(rxskb->dst->dev);
struct sock *ctl_sk = net->dccp.v6_ctl_sk;

if (dccp_hdr(rxskb)->dccph_type == DCCP_PKT_RESET)
return;
Expand Down Expand Up @@ -1173,11 +1174,16 @@ static struct inet_protosw dccp_v6_protosw = {

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

err = inet_ctl_sock_create(&net->dccp.v6_ctl_sk, PF_INET6,
SOCK_DCCP, IPPROTO_DCCP, net);
return err;
}

static void dccp_v6_exit_net(struct net *net)
{
inet_ctl_sock_destroy(net->dccp.v6_ctl_sk);
}

static struct pernet_operations dccp_v6_ops = {
Expand All @@ -1198,20 +1204,13 @@ static int __init dccp_v6_init(void)

inet6_register_protosw(&dccp_v6_protosw);

err = inet_ctl_sock_create(&init_net.dccp.v6_ctl_sk, PF_INET6,
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(init_net.dccp.v6_ctl_sk);
out_unregister_protosw:
inet6_del_protocol(&dccp_v6_protocol, IPPROTO_DCCP);
inet6_unregister_protosw(&dccp_v6_protosw);
out_unregister_proto:
Expand All @@ -1222,7 +1221,6 @@ static int __init dccp_v6_init(void)
static void __exit dccp_v6_exit(void)
{
unregister_pernet_subsys(&dccp_v6_ops);
inet_ctl_sock_destroy(init_net.dccp.v6_ctl_sk);
inet6_del_protocol(&dccp_v6_protocol, IPPROTO_DCCP);
inet6_unregister_protosw(&dccp_v6_protosw);
proto_unregister(&dccp_v6_prot);
Expand Down

0 comments on commit a58f3f4

Please sign in to comment.