Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
bd440735
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
bd440735
编写于
1月 10, 2017
作者:
J
Jiri Denemark
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
qemu: Refactor virQEMUCapsInitHostCPUModel
Signed-off-by:
N
Jiri Denemark
<
jdenemar@redhat.com
>
上级
824272cb
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
54 addition
and
53 deletion
+54
-53
src/qemu/qemu_capabilities.c
src/qemu/qemu_capabilities.c
+54
-53
未找到文件。
src/qemu/qemu_capabilities.c
浏览文件 @
bd440735
...
...
@@ -3048,37 +3048,36 @@ virQEMUCapsCPUFilterFeatures(const char *name,
}
static
void
virQEMUCapsCopyCPUModelFromQEMU
(
virQEMUCapsPtr
qemuCaps
)
/**
* Returns 0 when host CPU model provided by QEMU was filled in qemuCaps,
* 1 when the caller should fall back to using virCapsPtr->host.cpu,
* -1 on error.
*/
static
int
virQEMUCapsInitCPUModelS390
(
virQEMUCapsPtr
qemuCaps
,
virCPUDefPtr
cpu
)
{
virCPUDefPtr
cpu
=
NULL
;
qemuMonitorCPUModelInfoPtr
modelInfo
=
NULL
;
qemuMonitorCPUModelInfoPtr
modelInfo
=
qemuCaps
->
hostCPUModelInfo
;
size_t
i
;
if
(
!
(
modelInfo
=
qemuCaps
->
hostCPUModelInfo
)
)
{
if
(
!
modelInfo
)
{
virReportError
(
VIR_ERR_INTERNAL_ERROR
,
_
(
"missing host CPU model info from QEMU capabilities"
" for binary %s"
),
qemuCaps
->
binary
);
goto
error
;
_
(
"missing host CPU model info from QEMU capabilities "
"for binary %s"
),
qemuCaps
->
binary
);
return
-
1
;
}
if
(
VIR_ALLOC
(
cpu
)
<
0
)
goto
error
;
if
(
VIR_STRDUP
(
cpu
->
model
,
modelInfo
->
name
)
<
0
||
VIR_ALLOC_N
(
cpu
->
features
,
modelInfo
->
nprops
)
<
0
)
goto
error
;
return
-
1
;
cpu
->
nfeatures_max
=
modelInfo
->
nprops
;
cpu
->
nfeatures
=
0
;
cpu
->
sockets
=
cpu
->
cores
=
cpu
->
threads
=
0
;
cpu
->
type
=
VIR_CPU_TYPE_GUEST
;
cpu
->
mode
=
VIR_CPU_MODE_CUSTOM
;
cpu
->
match
=
VIR_CPU_MATCH_EXACT
;
for
(
i
=
0
;
i
<
modelInfo
->
nprops
;
i
++
)
{
if
(
VIR_STRDUP
(
cpu
->
features
[
i
].
name
,
modelInfo
->
props
[
i
].
name
)
<
0
)
goto
error
;
return
-
1
;
if
(
modelInfo
->
props
[
i
].
supported
)
cpu
->
features
[
i
].
policy
=
VIR_CPU_FEATURE_REQUIRE
;
...
...
@@ -3088,30 +3087,52 @@ virQEMUCapsCopyCPUModelFromQEMU(virQEMUCapsPtr qemuCaps)
cpu
->
nfeatures
++
;
}
qemuCaps
->
hostCPUModel
=
cpu
;
return
;
return
0
;
}
error:
virCPUDefFree
(
cpu
);
qemuCaps
->
hostCPUModel
=
NULL
;
virResetLastError
();
/**
* Returns 0 when host CPU model provided by QEMU was filled in qemuCaps,
* 1 when the caller should fall back to using virCapsPtr->host.cpu,
* -1 on error.
*/
static
int
virQEMUCapsInitCPUModel
(
virQEMUCapsPtr
qemuCaps
,
virCPUDefPtr
cpu
)
{
int
ret
=
1
;
if
(
ARCH_IS_S390
(
qemuCaps
->
arch
))
ret
=
virQEMUCapsInitCPUModelS390
(
qemuCaps
,
cpu
);
return
ret
;
}
static
void
virQEMUCaps
CopyCPUModelFromHost
(
virQEMUCapsPtr
qemuCaps
,
void
virQEMUCaps
InitHostCPUModel
(
virQEMUCapsPtr
qemuCaps
,
virCapsPtr
caps
)
{
virCPUDefPtr
cpu
=
NULL
;
int
rc
;
if
(
!
caps
||
!
virQEMUCapsGuestIsNative
(
caps
->
host
.
arch
,
qemuCaps
->
arch
))
return
;
if
(
caps
->
host
.
cpu
&&
caps
->
host
.
cpu
->
model
)
{
if
(
VIR_ALLOC
(
cpu
)
<
0
)
goto
error
;
cpu
->
sockets
=
cpu
->
cores
=
cpu
->
threads
=
0
;
cpu
->
type
=
VIR_CPU_TYPE_GUEST
;
cpu
->
mode
=
VIR_CPU_MODE_CUSTOM
;
cpu
->
match
=
VIR_CPU_MATCH_EXACT
;
cpu
->
fallback
=
VIR_CPU_FALLBACK_ALLOW
;
if
((
rc
=
virQEMUCapsInitCPUModel
(
qemuCaps
,
cpu
))
<
0
)
{
goto
error
;
}
else
if
(
rc
==
1
)
{
VIR_DEBUG
(
"No host CPU model info from QEMU; using host capabilities"
);
if
(
!
caps
->
host
.
cpu
||
!
caps
->
host
.
cpu
->
model
)
goto
error
;
if
(
virCPUDefCopyModelFilter
(
cpu
,
caps
->
host
.
cpu
,
true
,
virQEMUCapsCPUFilterFeatures
,
...
...
@@ -3124,30 +3145,10 @@ virQEMUCapsCopyCPUModelFromHost(virQEMUCapsPtr qemuCaps,
error:
virCPUDefFree
(
cpu
);
qemuCaps
->
hostCPUModel
=
NULL
;
virResetLastError
();
}
void
virQEMUCapsInitHostCPUModel
(
virQEMUCapsPtr
qemuCaps
,
virCapsPtr
caps
)
{
if
(
!
caps
||
!
virQEMUCapsGuestIsNative
(
caps
->
host
.
arch
,
qemuCaps
->
arch
))
return
;
switch
(
qemuCaps
->
arch
)
{
case
VIR_ARCH_S390
:
case
VIR_ARCH_S390X
:
virQEMUCapsCopyCPUModelFromQEMU
(
qemuCaps
);
break
;
default:
virQEMUCapsCopyCPUModelFromHost
(
qemuCaps
,
caps
);
}
}
static
int
virQEMUCapsLoadHostCPUModelInfo
(
virQEMUCapsPtr
qemuCaps
,
xmlXPathContextPtr
ctxt
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录