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
faf460c4
Commit
faf460c4
authored
Jun 11, 2003
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NET]: Fix sysfs kobj parent refcount handling.
parent
765ab8b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
net/core/net-sysfs.c
net/core/net-sysfs.c
+1
-7
No files found.
net/core/net-sysfs.c
View file @
faf460c4
...
@@ -278,17 +278,11 @@ int netdev_register_sysfs(struct net_device *net)
...
@@ -278,17 +278,11 @@ int netdev_register_sysfs(struct net_device *net)
goto
out_unreg
;
goto
out_unreg
;
}
}
net
->
stats_kobj
.
parent
=
NULL
;
net
->
stats_kobj
.
parent
=
NULL
;
if
(
net
->
get_stats
)
{
if
(
net
->
get_stats
)
{
struct
kobject
*
k
=
&
net
->
stats_kobj
;
struct
kobject
*
k
=
&
net
->
stats_kobj
;
k
->
parent
=
kobject_get
(
&
class_dev
->
kobj
);
k
->
parent
=
&
class_dev
->
kobj
;
if
(
!
k
->
parent
)
{
ret
=
-
EBUSY
;
goto
out_unreg
;
}
strlcpy
(
k
->
name
,
"statistics"
,
KOBJ_NAME_LEN
);
strlcpy
(
k
->
name
,
"statistics"
,
KOBJ_NAME_LEN
);
k
->
ktype
=
&
netstat_ktype
;
k
->
ktype
=
&
netstat_ktype
;
...
...
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