| To: | "David S. Miller" <davem@xxxxxxxxxx>, Hideaki YOSHIFUJI <yoshfuji@xxxxxxxxxxxxxx> |
|---|---|
| Subject: | [PATCH] set owner on /proc/net/rt6_stats |
| From: | Stephen Hemminger <shemminger@xxxxxxxx> |
| Date: | Fri, 15 Aug 2003 11:01:07 -0700 |
| Cc: | netdev@xxxxxxxxxxx |
| Organization: | Open Source Development Lab |
| Sender: | netdev-bounce@xxxxxxxxxxx |
Fix up initialization of IPV6 /proc/net/rt6_stats entries so owner field is set.
Use proc_net_fops_create helper instead of proc_net_create and fops assignment.
diff -Nru a/net/ipv6/route.c b/net/ipv6/route.c
--- a/net/ipv6/route.c Fri Aug 15 10:57:55 2003
+++ b/net/ipv6/route.c Fri Aug 15 10:57:55 2003
@@ -1983,10 +1983,11 @@
NULL, NULL);
fib6_init();
#ifdef CONFIG_PROC_FS
- proc_net_create("ipv6_route", 0, rt6_proc_info);
- p = create_proc_entry("rt6_stats", S_IRUGO, proc_net);
+ p = proc_net_create("ipv6_route", 0, rt6_proc_info);
if (p)
- p->proc_fops = &rt6_stats_seq_fops;
+ p->owner = THIS_MODULE;
+
+ proc_net_fops_create("rt6_stats", S_IRUGO, &rt6_stats_seq_fops);
#endif
#ifdef CONFIG_XFRM
xfrm6_init();
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH] network device renaming sysfs fix, Mark Huth |
|---|---|
| Next by Date: | [PATCH] SCTP: typo in Kconfig, YOSHIFUJI Hideaki / 吉藤英明 |
| Previous by Thread: | [PATCH] network device renaming sysfs fix, Dan Aloni |
| Next by Thread: | Re: [PATCH] set owner on /proc/net/rt6_stats, David S. Miller |
| Indexes: | [Date] [Thread] [Top] [All Lists] |