From: Anthony Liguori Date: Wed, 20 May 2009 18:36:17 +0000 (-0300) Subject: Remove noisy printf when KVM masks CPU features X-Git-Tag: v0.10.5~2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=a02ba54eed0bcb588a4746a2702f1337cbfe54f8;p=users%2Fdwmw2%2Fqemu.git Remove noisy printf when KVM masks CPU features Signed-off-by: Anthony Liguori Signed-off-by: Glauber Costa Signed-off-by: Anthony Liguori --- diff --git a/target-i386/helper.c b/target-i386/helper.c index c98cdcc105..e714994158 100644 --- 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; } }