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
660a0e8f
Commit
660a0e8f
authored
Aug 28, 2006
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PCI Hotplug: fix __must_check warnings
Signed-off-by:
Greg Kroah-Hartman
<
gregkh@suse.de
>
parent
e1b95dc6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
128 additions
and
33 deletions
+128
-33
drivers/pci/hotplug/pci_hotplug.h
drivers/pci/hotplug/pci_hotplug.h
+2
-2
drivers/pci/hotplug/pci_hotplug_core.c
drivers/pci/hotplug/pci_hotplug_core.c
+126
-31
No files found.
drivers/pci/hotplug/pci_hotplug.h
View file @
660a0e8f
...
@@ -172,8 +172,8 @@ struct hotplug_slot {
...
@@ -172,8 +172,8 @@ struct hotplug_slot {
extern
int
pci_hp_register
(
struct
hotplug_slot
*
slot
);
extern
int
pci_hp_register
(
struct
hotplug_slot
*
slot
);
extern
int
pci_hp_deregister
(
struct
hotplug_slot
*
slot
);
extern
int
pci_hp_deregister
(
struct
hotplug_slot
*
slot
);
extern
int
pci_hp_change_slot_info
(
struct
hotplug_slot
*
slot
,
extern
int
__must_check
pci_hp_change_slot_info
(
struct
hotplug_slot
*
slot
,
struct
hotplug_slot_info
*
info
);
struct
hotplug_slot_info
*
info
);
extern
struct
subsystem
pci_hotplug_slots_subsys
;
extern
struct
subsystem
pci_hotplug_slots_subsys
;
/* PCI Setting Record (Type 0) */
/* PCI Setting Record (Type 0) */
...
...
drivers/pci/hotplug/pci_hotplug_core.c
View file @
660a0e8f
...
@@ -482,31 +482,95 @@ static int has_test_file (struct hotplug_slot *slot)
...
@@ -482,31 +482,95 @@ static int has_test_file (struct hotplug_slot *slot)
static
int
fs_add_slot
(
struct
hotplug_slot
*
slot
)
static
int
fs_add_slot
(
struct
hotplug_slot
*
slot
)
{
{
if
(
has_power_file
(
slot
)
==
0
)
int
retval
=
0
;
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_power
.
attr
);
if
(
has_attention_file
(
slot
)
==
0
)
if
(
has_power_file
(
slot
)
==
0
)
{
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_attention
.
attr
);
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_power
.
attr
);
if
(
retval
)
goto
exit_power
;
}
if
(
has_latch_file
(
slot
)
==
0
)
if
(
has_attention_file
(
slot
)
==
0
)
{
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_latch
.
attr
);
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_attention
.
attr
);
if
(
retval
)
goto
exit_attention
;
}
if
(
has_adapter_file
(
slot
)
==
0
)
if
(
has_latch_file
(
slot
)
==
0
)
{
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_presence
.
attr
);
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_latch
.
attr
);
if
(
retval
)
goto
exit_latch
;
}
if
(
has_address_file
(
slot
)
==
0
)
if
(
has_adapter_file
(
slot
)
==
0
)
{
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_address
.
attr
);
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_presence
.
attr
);
if
(
retval
)
goto
exit_adapter
;
}
if
(
has_max_bus_speed_file
(
slot
)
==
0
)
if
(
has_address_file
(
slot
)
==
0
)
{
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_max_bus_speed
.
attr
);
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_address
.
attr
);
if
(
retval
)
goto
exit_address
;
}
if
(
has_max_bus_speed_file
(
slot
)
==
0
)
{
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_max_bus_speed
.
attr
);
if
(
retval
)
goto
exit_max_speed
;
}
if
(
has_cur_bus_speed_file
(
slot
)
==
0
)
{
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_cur_bus_speed
.
attr
);
if
(
retval
)
goto
exit_cur_speed
;
}
if
(
has_test_file
(
slot
)
==
0
)
{
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_test
.
attr
);
if
(
retval
)
goto
exit_test
;
}
goto
exit
;
exit_test:
if
(
has_cur_bus_speed_file
(
slot
)
==
0
)
if
(
has_cur_bus_speed_file
(
slot
)
==
0
)
sysfs_
creat
e_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_cur_bus_speed
.
attr
);
sysfs_
remov
e_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_cur_bus_speed
.
attr
);
if
(
has_test_file
(
slot
)
==
0
)
exit_cur_speed:
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_test
.
attr
);
if
(
has_max_bus_speed_file
(
slot
)
==
0
)
sysfs_remove_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_max_bus_speed
.
attr
);
return
0
;
exit_max_speed:
if
(
has_address_file
(
slot
)
==
0
)
sysfs_remove_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_address
.
attr
);
exit_address:
if
(
has_adapter_file
(
slot
)
==
0
)
sysfs_remove_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_presence
.
attr
);
exit_adapter:
if
(
has_latch_file
(
slot
)
==
0
)
sysfs_remove_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_latch
.
attr
);
exit_latch:
if
(
has_attention_file
(
slot
)
==
0
)
sysfs_remove_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_attention
.
attr
);
exit_attention:
if
(
has_power_file
(
slot
)
==
0
)
sysfs_remove_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_power
.
attr
);
exit_power:
exit:
return
retval
;
}
}
static
void
fs_remove_slot
(
struct
hotplug_slot
*
slot
)
static
void
fs_remove_slot
(
struct
hotplug_slot
*
slot
)
...
@@ -626,8 +690,11 @@ int pci_hp_deregister (struct hotplug_slot *slot)
...
@@ -626,8 +690,11 @@ int pci_hp_deregister (struct hotplug_slot *slot)
*
*
* Returns 0 if successful, anything else for an error.
* Returns 0 if successful, anything else for an error.
*/
*/
int
pci_hp_change_slot_info
(
struct
hotplug_slot
*
slot
,
struct
hotplug_slot_info
*
info
)
int
__must_check
pci_hp_change_slot_info
(
struct
hotplug_slot
*
slot
,
struct
hotplug_slot_info
*
info
)
{
{
int
retval
;
if
((
slot
==
NULL
)
||
(
info
==
NULL
))
if
((
slot
==
NULL
)
||
(
info
==
NULL
))
return
-
ENODEV
;
return
-
ENODEV
;
...
@@ -636,32 +703,60 @@ int pci_hp_change_slot_info (struct hotplug_slot *slot, struct hotplug_slot_info
...
@@ -636,32 +703,60 @@ int pci_hp_change_slot_info (struct hotplug_slot *slot, struct hotplug_slot_info
* for the files referring to the fields that have now changed.
* for the files referring to the fields that have now changed.
*/
*/
if
((
has_power_file
(
slot
)
==
0
)
&&
if
((
has_power_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
power_status
!=
info
->
power_status
))
(
slot
->
info
->
power_status
!=
info
->
power_status
))
{
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_power
.
attr
);
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_power
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_attention_file
(
slot
)
==
0
)
&&
if
((
has_attention_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
attention_status
!=
info
->
attention_status
))
(
slot
->
info
->
attention_status
!=
info
->
attention_status
))
{
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_attention
.
attr
);
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_attention
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_latch_file
(
slot
)
==
0
)
&&
if
((
has_latch_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
latch_status
!=
info
->
latch_status
))
(
slot
->
info
->
latch_status
!=
info
->
latch_status
))
{
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_latch
.
attr
);
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_latch
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_adapter_file
(
slot
)
==
0
)
&&
if
((
has_adapter_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
adapter_status
!=
info
->
adapter_status
))
(
slot
->
info
->
adapter_status
!=
info
->
adapter_status
))
{
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_presence
.
attr
);
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_presence
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_address_file
(
slot
)
==
0
)
&&
if
((
has_address_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
address
!=
info
->
address
))
(
slot
->
info
->
address
!=
info
->
address
))
{
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_address
.
attr
);
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_address
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_max_bus_speed_file
(
slot
)
==
0
)
&&
if
((
has_max_bus_speed_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
max_bus_speed
!=
info
->
max_bus_speed
))
(
slot
->
info
->
max_bus_speed
!=
info
->
max_bus_speed
))
{
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_max_bus_speed
.
attr
);
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_max_bus_speed
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_cur_bus_speed_file
(
slot
)
==
0
)
&&
if
((
has_cur_bus_speed_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
cur_bus_speed
!=
info
->
cur_bus_speed
))
(
slot
->
info
->
cur_bus_speed
!=
info
->
cur_bus_speed
))
{
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_cur_bus_speed
.
attr
);
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_cur_bus_speed
.
attr
);
if
(
retval
)
return
retval
;
}
memcpy
(
slot
->
info
,
info
,
sizeof
(
struct
hotplug_slot_info
));
memcpy
(
slot
->
info
,
info
,
sizeof
(
struct
hotplug_slot_info
));
...
...
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