projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b4bedd
)
target-i386: check/enforce: Do not ignore "hypervisor" flag
author
Eduardo Habkost
<ehabkost@redhat.com>
Fri, 4 Jan 2013 22:01:07 +0000
(20:01 -0200)
committer
Andreas Färber
<afaerber@suse.de>
Tue, 8 Jan 2013 20:03:44 +0000
(21:03 +0100)
We don't need any hack to ignore CPUID_EXT_HYPERVISOR anymore, because
kvm_arch_get_supported_cpuid() now sets CPUID_EXT_HYPERVISOR properly.
So, this shouldn't introduce any behavior change, but it makes the code
simpler.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
target-i386/cpu.c
patch
|
blob
|
history
diff --git
a/target-i386/cpu.c
b/target-i386/cpu.c
index ddf70248a0aaa929586a972b3f479abb6691358d..a3d104d7dc967d1d2c5d50546babd5f84d7a6476 100644
(file)
--- a/
target-i386/cpu.c
+++ b/
target-i386/cpu.c
@@
-959,7
+959,7
@@
static int kvm_check_features_against_host(x86_def_t *guest_def)
{&guest_def->features, &host_def.features,
~0, feature_name, 0x00000001, R_EDX},
{&guest_def->ext_features, &host_def.ext_features,
- ~
CPUID_EXT_HYPERVISOR
, ext_feature_name, 0x00000001, R_ECX},
+ ~
0
, ext_feature_name, 0x00000001, R_ECX},
{&guest_def->ext2_features, &host_def.ext2_features,
~PPRO_FEATURES, ext2_feature_name, 0x80000001, R_EDX},
{&guest_def->ext3_features, &host_def.ext3_features,