Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
50b99391
Commit
50b99391
authored
Aug 15, 2003
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IPV6]: Set owner on /proc/net/rt6_stats.
parent
c95f18f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
net/ipv6/route.c
net/ipv6/route.c
+4
-3
No files found.
net/ipv6/route.c
View file @
50b99391
...
@@ -1983,10 +1983,11 @@ void __init ip6_route_init(void)
...
@@ -1983,10 +1983,11 @@ void __init ip6_route_init(void)
NULL
,
NULL
);
NULL
,
NULL
);
fib6_init
();
fib6_init
();
#ifdef CONFIG_PROC_FS
#ifdef CONFIG_PROC_FS
proc_net_create
(
"ipv6_route"
,
0
,
rt6_proc_info
);
p
=
proc_net_create
(
"ipv6_route"
,
0
,
rt6_proc_info
);
p
=
create_proc_entry
(
"rt6_stats"
,
S_IRUGO
,
proc_net
);
if
(
p
)
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
#endif
#ifdef CONFIG_XFRM
#ifdef CONFIG_XFRM
xfrm6_init
();
xfrm6_init
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment