Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
cc7da958
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
cc7da958
编写于
4月 10, 2013
作者:
O
Osier Yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Cleanup: Change datatype of origstate's members to boolean
Members of struct virPCIDevice are changed together.
上级
9fda2f5c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
38 addition
and
38 deletion
+38
-38
src/conf/domain_conf.c
src/conf/domain_conf.c
+3
-3
src/conf/domain_conf.h
src/conf/domain_conf.h
+3
-3
src/util/virpci.c
src/util/virpci.c
+29
-29
src/util/virpci.h
src/util/virpci.h
+3
-3
未找到文件。
src/conf/domain_conf.c
浏览文件 @
cc7da958
...
...
@@ -3482,11 +3482,11 @@ virDomainHostdevSubsysPciOrigStatesDefParseXML(const xmlNodePtr node,
while (cur != NULL) {
if (cur->type == XML_ELEMENT_NODE) {
if (xmlStrEqual(cur->name, BAD_CAST "unbind")) {
def->states.pci.unbind_from_stub =
1
;
def->states.pci.unbind_from_stub =
true
;
} else if (xmlStrEqual(cur->name, BAD_CAST "removeslot")) {
def->states.pci.remove_slot =
1
;
def->states.pci.remove_slot =
true
;
} else if (xmlStrEqual(cur->name, BAD_CAST "reprobe")) {
def->states.pci.reprobe =
1
;
def->states.pci.reprobe =
true
;
} else {
virReportError(VIR_ERR_INTERNAL_ERROR,
_("unsupported element '%s' of 'origstates'"),
...
...
src/conf/domain_conf.h
浏览文件 @
cc7da958
...
...
@@ -345,17 +345,17 @@ struct _virDomainHostdevOrigStates {
/* Does the device need to unbind from stub when
* reattaching to host?
*/
unsigned
int
unbind_from_stub
:
1
;
bool
unbind_from_stub
;
/* Does it need to use remove_slot when reattaching
* the device to host?
*/
unsigned
int
remove_slot
:
1
;
bool
remove_slot
;
/* Does it need to reprobe driver for the device when
* reattaching to host?
*/
unsigned
int
reprobe
:
1
;
bool
reprobe
;
}
pci
;
/* Perhaps 'usb' in future */
...
...
src/util/virpci.c
浏览文件 @
cc7da958
...
...
@@ -63,14 +63,14 @@ struct _virPCIDevice {
unsigned
pcie_cap_pos
;
unsigned
pci_pm_cap_pos
;
unsigned
has_flr
:
1
;
unsigned
has_pm_reset
:
1
;
bool
has_flr
;
bool
has_pm_reset
;
bool
managed
;
/* used by reattach function */
unsigned
unbind_from_stub
:
1
;
unsigned
remove_slot
:
1
;
unsigned
reprobe
:
1
;
bool
unbind_from_stub
;
bool
remove_slot
;
bool
reprobe
;
};
struct
_virPCIDeviceList
{
...
...
@@ -776,8 +776,8 @@ virPCIDeviceInit(virPCIDevicePtr dev, int cfgfd)
flr
=
virPCIDeviceDetectFunctionLevelReset
(
dev
,
cfgfd
);
if
(
flr
<
0
)
return
flr
;
dev
->
has_flr
=
flr
;
dev
->
has_pm_reset
=
virPCIDeviceDetectPowerManagementReset
(
dev
,
cfgfd
);
dev
->
has_flr
=
!!
flr
;
dev
->
has_pm_reset
=
!!
virPCIDeviceDetectPowerManagementReset
(
dev
,
cfgfd
);
return
0
;
}
...
...
@@ -935,7 +935,7 @@ virPCIDeviceUnbindFromStub(virPCIDevicePtr dev, const char *driver)
goto
cleanup
;
}
}
dev
->
unbind_from_stub
=
0
;
dev
->
unbind_from_stub
=
false
;
remove_slot:
if
(
!
dev
->
remove_slot
)
...
...
@@ -952,7 +952,7 @@ remove_slot:
dev
->
name
,
driver
);
goto
cleanup
;
}
dev
->
remove_slot
=
0
;
dev
->
remove_slot
=
false
;
reprobe:
if
(
!
dev
->
reprobe
)
{
...
...
@@ -982,9 +982,9 @@ reprobe:
cleanup:
/* do not do it again */
dev
->
unbind_from_stub
=
0
;
dev
->
remove_slot
=
0
;
dev
->
reprobe
=
0
;
dev
->
unbind_from_stub
=
false
;
dev
->
remove_slot
=
false
;
dev
->
reprobe
=
false
;
VIR_FREE
(
drvdir
);
VIR_FREE
(
path
);
...
...
@@ -999,7 +999,7 @@ virPCIDeviceBindToStub(virPCIDevicePtr dev, const char *driver)
int
result
=
-
1
;
char
*
drvdir
=
NULL
;
char
*
path
=
NULL
;
int
reprobe
=
0
;
int
reprobe
=
false
;
/* check whether the device is already bound to a driver */
if
(
virPCIDriverDir
(
&
drvdir
,
driver
)
<
0
||
...
...
@@ -1013,7 +1013,7 @@ virPCIDeviceBindToStub(virPCIDevicePtr dev, const char *driver)
result
=
0
;
goto
cleanup
;
}
reprobe
=
1
;
reprobe
=
true
;
}
/* Add the PCI device ID to the stub's dynamic ID table;
...
...
@@ -1044,8 +1044,8 @@ virPCIDeviceBindToStub(virPCIDevicePtr dev, const char *driver)
}
if
(
virFileLinkPointsTo
(
path
,
drvdir
))
{
dev
->
unbind_from_stub
=
1
;
dev
->
remove_slot
=
1
;
dev
->
unbind_from_stub
=
true
;
dev
->
remove_slot
=
true
;
goto
remove_id
;
}
...
...
@@ -1087,7 +1087,7 @@ virPCIDeviceBindToStub(virPCIDevicePtr dev, const char *driver)
dev
->
name
,
driver
);
goto
remove_id
;
}
dev
->
remove_slot
=
1
;
dev
->
remove_slot
=
true
;
if
(
virPCIDriverFile
(
&
path
,
driver
,
"bind"
)
<
0
)
{
goto
remove_id
;
...
...
@@ -1099,7 +1099,7 @@ virPCIDeviceBindToStub(virPCIDevicePtr dev, const char *driver)
dev
->
name
,
driver
);
goto
remove_id
;
}
dev
->
unbind_from_stub
=
1
;
dev
->
unbind_from_stub
=
true
;
}
remove_id:
...
...
@@ -1112,7 +1112,7 @@ remove_id:
VIR_WARN
(
"Could not remove PCI ID '%s' from %s, and the device "
"cannot be probed again."
,
dev
->
id
,
driver
);
}
dev
->
reprobe
=
0
;
dev
->
reprobe
=
false
;
goto
cleanup
;
}
...
...
@@ -1126,7 +1126,7 @@ remove_id:
VIR_WARN
(
"Failed to remove PCI ID '%s' from %s, and the device "
"cannot be probed again."
,
dev
->
id
,
driver
);
}
dev
->
reprobe
=
0
;
dev
->
reprobe
=
false
;
goto
cleanup
;
}
...
...
@@ -1470,9 +1470,9 @@ virPCIDeviceGetUnbindFromStub(virPCIDevicePtr dev)
}
void
virPCIDeviceSetUnbindFromStub
(
virPCIDevicePtr
dev
,
unsigned
unbind
)
virPCIDeviceSetUnbindFromStub
(
virPCIDevicePtr
dev
,
bool
unbind
)
{
dev
->
unbind_from_stub
=
!!
unbind
;
dev
->
unbind_from_stub
=
unbind
;
}
unsigned
...
...
@@ -1482,9 +1482,9 @@ virPCIDeviceGetRemoveSlot(virPCIDevicePtr dev)
}
void
virPCIDeviceSetRemoveSlot
(
virPCIDevicePtr
dev
,
unsigned
remove_slot
)
virPCIDeviceSetRemoveSlot
(
virPCIDevicePtr
dev
,
bool
remove_slot
)
{
dev
->
remove_slot
=
!!
remove_slot
;
dev
->
remove_slot
=
remove_slot
;
}
unsigned
...
...
@@ -1494,9 +1494,9 @@ virPCIDeviceGetReprobe(virPCIDevicePtr dev)
}
void
virPCIDeviceSetReprobe
(
virPCIDevicePtr
dev
,
unsigned
reprobe
)
virPCIDeviceSetReprobe
(
virPCIDevicePtr
dev
,
bool
reprobe
)
{
dev
->
reprobe
=
!!
reprobe
;
dev
->
reprobe
=
reprobe
;
}
void
...
...
@@ -1513,9 +1513,9 @@ virPCIDeviceGetUsedBy(virPCIDevicePtr dev)
void
virPCIDeviceReattachInit
(
virPCIDevicePtr
pci
)
{
pci
->
unbind_from_stub
=
1
;
pci
->
remove_slot
=
1
;
pci
->
reprobe
=
1
;
pci
->
unbind_from_stub
=
true
;
pci
->
remove_slot
=
true
;
pci
->
reprobe
=
true
;
}
...
...
src/util/virpci.h
浏览文件 @
cc7da958
...
...
@@ -68,13 +68,13 @@ void virPCIDeviceSetUsedBy(virPCIDevice *dev,
const
char
*
virPCIDeviceGetUsedBy
(
virPCIDevice
*
dev
);
unsigned
virPCIDeviceGetUnbindFromStub
(
virPCIDevicePtr
dev
);
void
virPCIDeviceSetUnbindFromStub
(
virPCIDevice
*
dev
,
unsigned
unbind
);
bool
unbind
);
unsigned
virPCIDeviceGetRemoveSlot
(
virPCIDevicePtr
dev
);
void
virPCIDeviceSetRemoveSlot
(
virPCIDevice
*
dev
,
unsigned
remove_slot
);
bool
remove_slot
);
unsigned
virPCIDeviceGetReprobe
(
virPCIDevicePtr
dev
);
void
virPCIDeviceSetReprobe
(
virPCIDevice
*
dev
,
unsigned
reprobe
);
bool
reprobe
);
void
virPCIDeviceReattachInit
(
virPCIDevice
*
dev
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录