1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

F #1688: Changed cpu mode and fallback (#2057)

This commit is contained in:
juanmont 2018-05-10 16:16:55 +02:00 committed by Ruben S. Montero
parent b356e56113
commit df2b3cc0a2

View File

@ -414,9 +414,9 @@ int LibVirtDriver::deployment_description_kvm(
{
file << "\t<cpu mode=" << one_util::escape_xml_attr(cpu_mode) << ">\n";
if ( cpu_mode == "host-model" )
if ( cpu_mode == "custom" )
{
file << "\t\t<model fallback='allow'>" << one_util::escape_xml(cpu_model)
file << "\t\t<model fallback='forbid'>" << one_util::escape_xml(cpu_model)
<< "</model>\n";
}