Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
660a0e8f
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 大约 4 年
通知
14
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
660a0e8f
编写于
8月 28, 2006
作者:
G
Greg Kroah-Hartman
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
PCI Hotplug: fix __must_check warnings
Signed-off-by:
N
Greg Kroah-Hartman
<
gregkh@suse.de
>
上级
e1b95dc6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
128 addition
and
33 deletion
+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
未找到文件。
drivers/pci/hotplug/pci_hotplug.h
浏览文件 @
660a0e8f
...
...
@@ -172,8 +172,8 @@ struct hotplug_slot {
extern
int
pci_hp_register
(
struct
hotplug_slot
*
slot
);
extern
int
pci_hp_deregister
(
struct
hotplug_slot
*
slot
);
extern
int
pci_hp_change_slot_info
(
struct
hotplug_slot
*
slot
,
struct
hotplug_slot_info
*
info
);
extern
int
__must_check
pci_hp_change_slot_info
(
struct
hotplug_slot
*
slot
,
struct
hotplug_slot_info
*
info
);
extern
struct
subsystem
pci_hotplug_slots_subsys
;
/* PCI Setting Record (Type 0) */
...
...
drivers/pci/hotplug/pci_hotplug_core.c
浏览文件 @
660a0e8f
...
...
@@ -482,31 +482,95 @@ static int has_test_file (struct hotplug_slot *slot)
static
int
fs_add_slot
(
struct
hotplug_slot
*
slot
)
{
if
(
has_power_file
(
slot
)
==
0
)
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_power
.
attr
);
int
retval
=
0
;
if
(
has_attention_file
(
slot
)
==
0
)
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_attention
.
attr
);
if
(
has_power_file
(
slot
)
==
0
)
{
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_power
.
attr
);
if
(
retval
)
goto
exit_power
;
}
if
(
has_latch_file
(
slot
)
==
0
)
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_latch
.
attr
);
if
(
has_attention_file
(
slot
)
==
0
)
{
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_attention
.
attr
);
if
(
retval
)
goto
exit_attention
;
}
if
(
has_adapter_file
(
slot
)
==
0
)
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_presence
.
attr
);
if
(
has_latch_file
(
slot
)
==
0
)
{
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_latch
.
attr
);
if
(
retval
)
goto
exit_latch
;
}
if
(
has_address_file
(
slot
)
==
0
)
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_address
.
attr
);
if
(
has_adapter_file
(
slot
)
==
0
)
{
retval
=
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_presence
.
attr
);
if
(
retval
)
goto
exit_adapter
;
}
if
(
has_max_bus_speed_file
(
slot
)
==
0
)
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_max_bus_speed
.
attr
);
if
(
has_address_file
(
slot
)
==
0
)
{
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
)
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
)
sysfs_create_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_test
.
attr
);
exit_cur_speed:
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
)
...
...
@@ -626,8 +690,11 @@ int pci_hp_deregister (struct hotplug_slot *slot)
*
* 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
))
return
-
ENODEV
;
...
...
@@ -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.
*/
if
((
has_power_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
power_status
!=
info
->
power_status
))
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_power
.
attr
);
(
slot
->
info
->
power_status
!=
info
->
power_status
))
{
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_power
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_attention_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
attention_status
!=
info
->
attention_status
))
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_attention
.
attr
);
(
slot
->
info
->
attention_status
!=
info
->
attention_status
))
{
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_attention
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_latch_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
latch_status
!=
info
->
latch_status
))
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_latch
.
attr
);
(
slot
->
info
->
latch_status
!=
info
->
latch_status
))
{
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_latch
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_adapter_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
adapter_status
!=
info
->
adapter_status
))
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_presence
.
attr
);
(
slot
->
info
->
adapter_status
!=
info
->
adapter_status
))
{
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_presence
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_address_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
address
!=
info
->
address
))
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_address
.
attr
);
(
slot
->
info
->
address
!=
info
->
address
))
{
retval
=
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_address
.
attr
);
if
(
retval
)
return
retval
;
}
if
((
has_max_bus_speed_file
(
slot
)
==
0
)
&&
(
slot
->
info
->
max_bus_speed
!=
info
->
max_bus_speed
))
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_max_bus_speed
.
attr
);
(
slot
->
info
->
max_bus_speed
!=
info
->
max_bus_speed
))
{
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
)
&&
(
slot
->
info
->
cur_bus_speed
!=
info
->
cur_bus_speed
))
sysfs_update_file
(
&
slot
->
kobj
,
&
hotplug_slot_attr_cur_bus_speed
.
attr
);
(
slot
->
info
->
cur_bus_speed
!=
info
->
cur_bus_speed
))
{
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
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录