From: Anthony Liguori Date: Fri, 8 May 2009 20:39:04 +0000 (-0500) Subject: Remove noisy printf when KVM masks CPU features X-Git-Tag: v0.11.0-rc0~678 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=989cebff75f66b06631db06766ee3a17d0320864;p=qemu.git Remove noisy printf when KVM masks CPU features Signed-off-by: Anthony Liguori --- diff --git a/target-i386/helper.c b/target-i386/helper.c index bdf242bf7..5c03e3a75 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; } }