Only allow -cpu host when KVM is enabled

-cpu host is not at all useful when using tcg.

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Anthony Liguori 2009-07-16 22:20:22 -05:00
parent 1eebab9835
commit 8fe7911401

View File

@ -358,11 +358,10 @@ static int cpu_x86_find_by_name(x86_def_t *x86_cpu_def, const char *cpu_model)
break; break;
} }
} }
if (!def) { if (kvm_enabled() && strcmp(name, "host") == 0) {
if (strcmp(name, "host") != 0) {
goto error;
}
cpu_x86_fill_host(x86_cpu_def); cpu_x86_fill_host(x86_cpu_def);
} else if (!def) {
goto error;
} else { } else {
memcpy(x86_cpu_def, def, sizeof(*def)); memcpy(x86_cpu_def, def, sizeof(*def));
} }