Commit 50b99391 authored by Stephen Hemminger's avatar Stephen Hemminger

[IPV6]: Set owner on /proc/net/rt6_stats.

parent c95f18f6
......@@ -1983,10 +1983,11 @@ void __init ip6_route_init(void)
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();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment