提交 7cd896ef 编写于 作者: J Jiri Denemark

cpu_x86: Honor CPU models' <decode> element

Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
Reviewed-by: NChristian Ehrhardt <christian.ehrhardt@canonical.com>
Tested-by: NChristian Ehrhardt <christian.ehrhardt@canonical.com>
上级 f4914045
...@@ -2044,10 +2044,23 @@ x86DecodeUseCandidate(virCPUx86ModelPtr current, ...@@ -2044,10 +2044,23 @@ x86DecodeUseCandidate(virCPUx86ModelPtr current,
virCPUx86ModelPtr candidate, virCPUx86ModelPtr candidate,
virCPUDefPtr cpuCandidate, virCPUDefPtr cpuCandidate,
uint32_t signature, uint32_t signature,
const char *preferred, const char *preferred)
bool checkPolicy)
{ {
if (checkPolicy) { if (cpuCandidate->type == VIR_CPU_TYPE_HOST &&
!candidate->decodeHost) {
VIR_DEBUG("%s is not supposed to be used for host CPU definition",
cpuCandidate->model);
return 0;
}
if (cpuCandidate->type == VIR_CPU_TYPE_GUEST &&
!candidate->decodeGuest) {
VIR_DEBUG("%s is not supposed to be used for guest CPU definition",
cpuCandidate->model);
return 0;
}
if (cpuCandidate->type == VIR_CPU_TYPE_HOST) {
size_t i; size_t i;
for (i = 0; i < cpuCandidate->nfeatures; i++) { for (i = 0; i < cpuCandidate->nfeatures; i++) {
if (cpuCandidate->features[i].policy == VIR_CPU_FEATURE_DISABLE) if (cpuCandidate->features[i].policy == VIR_CPU_FEATURE_DISABLE)
...@@ -2209,8 +2222,7 @@ x86Decode(virCPUDefPtr cpu, ...@@ -2209,8 +2222,7 @@ x86Decode(virCPUDefPtr cpu,
if ((rc = x86DecodeUseCandidate(model, cpuModel, if ((rc = x86DecodeUseCandidate(model, cpuModel,
candidate, cpuCandidate, candidate, cpuCandidate,
signature, preferred, signature, preferred))) {
cpu->type == VIR_CPU_TYPE_HOST))) {
virCPUDefFree(cpuModel); virCPUDefFree(cpuModel);
cpuModel = cpuCandidate; cpuModel = cpuCandidate;
model = candidate; model = candidate;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册