projects
/
users
/
dwmw2
/
qemu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
578485d
)
Remove noisy printf when KVM masks CPU features
author
Anthony Liguori <aliguori@us.ibm.com>
Wed, 20 May 2009 18:36:17 +0000
(15:36 -0300)
committer
Anthony Liguori <aliguori@us.ibm.com>
Wed, 20 May 2009 20:21:24 +0000
(15:21 -0500)
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Glauber Costa <glommer@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
target-i386/helper.c
patch
|
blob
|
history
diff --git
a/target-i386/helper.c
b/target-i386/helper.c
index c98cdcc105675a3f5d5e7ece2644e355f526c5ca..e714994158081ed426d5ff35bb1581cc091e612b 100644
(file)
--- a/
target-i386/helper.c
+++ b/
target-i386/helper.c
@@
-102,7
+102,6
@@
static void kvm_trim_features(uint32_t *features, uint32_t supported,
for (i = 0; i < 32; ++i) {
mask = 1U << i;
if ((*features & mask) && !(supported & mask)) {
- printf("Processor feature %s not supported by kvm\n", names[i]);
*features &= ~mask;
}
}