Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 90015
b: refs/heads/master
c: cdb1876
h: refs/heads/master
i:
  90013: 4878fc5
  90011: bd3a18d
  90007: f5491e8
  89999: b250759
  89983: d18b1fa
v: v3
  • Loading branch information
Daniel Lezcano authored and David S. Miller committed Mar 4, 2008
1 parent c085e6b commit 5fdf59f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 44 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: 83321d6b9872b94604e481a79dc2c8acbe4ece31
refs/heads/master: cdb1876192dbe680b3ac955717fdf7f863c1762d
70 changes: 27 additions & 43 deletions trunk/net/ipv6/route.c
Original file line number Diff line number Diff line change
Expand Up @@ -2377,40 +2377,6 @@ static const struct file_operations rt6_stats_seq_fops = {
.llseek = seq_lseek,
.release = single_release,
};

static int ipv6_route_proc_init(struct net *net)
{
int ret = -ENOMEM;
if (!proc_net_fops_create(net, "ipv6_route",
0, &ipv6_route_proc_fops))
goto out;

if (!proc_net_fops_create(net, "rt6_stats",
S_IRUGO, &rt6_stats_seq_fops))
goto out_ipv6_route;

ret = 0;
out:
return ret;
out_ipv6_route:
proc_net_remove(net, "ipv6_route");
goto out;
}

static void ipv6_route_proc_fini(struct net *net)
{
proc_net_remove(net, "ipv6_route");
proc_net_remove(net, "rt6_stats");
}
#else
static inline int ipv6_route_proc_init(struct net *net)
{
return 0;
}
static inline void ipv6_route_proc_fini(struct net *net)
{
return ;
}
#endif /* CONFIG_PROC_FS */

#ifdef CONFIG_SYSCTL
Expand Down Expand Up @@ -2544,6 +2510,28 @@ struct ctl_table *ipv6_route_sysctl_init(struct net *net)
}
#endif

static int ip6_route_net_init(struct net *net)
{
#ifdef CONFIG_PROC_FS
proc_net_fops_create(net, "ipv6_route", 0, &ipv6_route_proc_fops);
proc_net_fops_create(net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops);
#endif
return 0;
}

static void ip6_route_net_exit(struct net *net)
{
#ifdef CONFIG_PROC_FS
proc_net_remove(net, "ipv6_route");
proc_net_remove(net, "rt6_stats");
#endif
}

static struct pernet_operations ip6_route_net_ops = {
.init = ip6_route_net_init,
.exit = ip6_route_net_exit,
};

int __init ip6_route_init(void)
{
int ret;
Expand All @@ -2560,13 +2548,9 @@ int __init ip6_route_init(void)
if (ret)
goto out_kmem_cache;

ret = ipv6_route_proc_init(&init_net);
if (ret)
goto out_fib6_init;

ret = xfrm6_init();
if (ret)
goto out_proc_init;
goto out_fib6_init;

ret = fib6_rules_init();
if (ret)
Expand All @@ -2578,16 +2562,16 @@ int __init ip6_route_init(void)
__rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL))
goto fib6_rules_init;

ret = 0;
ret = register_pernet_subsys(&ip6_route_net_ops);
if (ret)
goto fib6_rules_init;
out:
return ret;

fib6_rules_init:
fib6_rules_cleanup();
xfrm6_init:
xfrm6_fini();
out_proc_init:
ipv6_route_proc_fini(&init_net);
out_fib6_init:
rt6_ifdown(&init_net, NULL);
fib6_gc_cleanup();
Expand All @@ -2598,8 +2582,8 @@ int __init ip6_route_init(void)

void ip6_route_cleanup(void)
{
unregister_pernet_subsys(&ip6_route_net_ops);
fib6_rules_cleanup();
ipv6_route_proc_fini(&init_net);
xfrm6_fini();
rt6_ifdown(&init_net, NULL);
fib6_gc_cleanup();
Expand Down

0 comments on commit 5fdf59f

Please sign in to comment.