提交 8c49e04e 编写于 作者: M Marek Marczykowski-Górecki 提交者: Jim Fehlig

libxl: warn about ignored CPU mode=custom

When support for mode=custom will be added in the future, semantics of
current config will change. Reduce the surprise by emitting a warning.
Signed-off-by: NMarek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Reviewed-by: NDaniel P. Berrangé <berrange@redhat.com>
上级 446d0914
......@@ -424,6 +424,12 @@ libxlMakeDomBuildInfo(virDomainDefPtr def,
libxl_defbool_set(&b_info->u.hvm.nested_hvm, hasHwVirt);
}
if (def->cpu && def->cpu->mode == VIR_CPU_MODE_CUSTOM) {
VIR_WARN("Ignoring CPU with mode=custom, update your config to "
"mode=host-passthrough to avoid risk of changed guest "
"semantics when mode=custom is supported in the future");
}
if (def->nsounds > 0) {
/*
* Use first sound device. man xl.cfg(5) describes soundhw as
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册