Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78343
b: refs/heads/master
c: 107f163
h: refs/heads/master
i:
  78341: 2082b41
  78339: 8743bdf
  78335: f6319d2
v: v3
  • Loading branch information
Pavel Emelyanov authored and David S. Miller committed Jan 28, 2008
1 parent a6c5dd0 commit 6805b58
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 15 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: 78c686e9faff05f1194e892d5b1273ce24021ff6
refs/heads/master: 107f163428b846d7cef68cb6f436788bb2f6c2e1
54 changes: 40 additions & 14 deletions trunk/net/ipv4/route.c
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,44 @@ static int ip_rt_acct_read(char *buffer, char **start, off_t offset,
return length;
}
#endif

static __init int ip_rt_proc_init(struct net *net)
{
struct proc_dir_entry *pde;

pde = proc_net_fops_create(net, "rt_cache", S_IRUGO,
&rt_cache_seq_fops);
if (!pde)
goto err1;

pde = create_proc_entry("rt_cache", S_IRUGO, net->proc_net_stat);
if (!pde)
goto err2;

pde->proc_fops = &rt_cpu_seq_fops;

#ifdef CONFIG_NET_CLS_ROUTE
pde = create_proc_read_entry("rt_acct", 0, net->proc_net,
ip_rt_acct_read, NULL);
if (!pde)
goto err3;
#endif
return 0;

#ifdef CONFIG_NET_CLS_ROUTE
err3:
remove_proc_entry("rt_cache", net->proc_net_stat);
#endif
err2:
remove_proc_entry("rt_cache", net->proc_net);
err1:
return -ENOMEM;
}
#else
static inline int ip_rt_proc_init(struct net *net)
{
return 0;
}
#endif /* CONFIG_PROC_FS */

static __inline__ void rt_free(struct rtable *rt)
Expand Down Expand Up @@ -3000,20 +3038,8 @@ int __init ip_rt_init(void)
ip_rt_secret_interval;
add_timer(&rt_secret_timer);

#ifdef CONFIG_PROC_FS
{
struct proc_dir_entry *rtstat_pde = NULL; /* keep gcc happy */
if (!proc_net_fops_create(&init_net, "rt_cache", S_IRUGO, &rt_cache_seq_fops) ||
!(rtstat_pde = create_proc_entry("rt_cache", S_IRUGO,
init_net.proc_net_stat))) {
return -ENOMEM;
}
rtstat_pde->proc_fops = &rt_cpu_seq_fops;
}
#ifdef CONFIG_NET_CLS_ROUTE
create_proc_read_entry("rt_acct", 0, init_net.proc_net, ip_rt_acct_read, NULL);
#endif
#endif
if (ip_rt_proc_init(&init_net))
printk(KERN_ERR "Unable to create route proc files\n");
#ifdef CONFIG_XFRM
xfrm_init();
xfrm4_init();
Expand Down

0 comments on commit 6805b58

Please sign in to comment.