diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-16 22:20:22 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-16 22:20:22 -0500 |
commit | 5e6500026030eccd95fb4bdacd9f5d6bbed1d929 (patch) | |
tree | 5517f93e78a23f4e798333ff88e72bc9e8b19d69 /target-i386 | |
parent | 0d35bf2d07668c0f749633c4dcc5a4527a37984c (diff) |
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>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/helper.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index 5f335331b1..dd898852c5 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -358,11 +358,10 @@ static int cpu_x86_find_by_name(x86_def_t *x86_cpu_def, const char *cpu_model) break; } } - if (!def) { - if (strcmp(name, "host") != 0) { - goto error; - } + if (kvm_enabled() && strcmp(name, "host") == 0) { cpu_x86_fill_host(x86_cpu_def); + } else if (!def) { + goto error; } else { memcpy(x86_cpu_def, def, sizeof(*def)); } |