diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-05-08 15:39:04 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-05-08 15:51:28 -0500 |
commit | 989cebff75f66b06631db06766ee3a17d0320864 (patch) | |
tree | 883ecbf3376f03a91270602aa2ebf180ab0c9e81 /target-i386/helper.c | |
parent | e7d54ae83c4ffb63a2481d17f136110ab421afc5 (diff) | |
download | qemu-989cebff75f66b06631db06766ee3a17d0320864.zip qemu-989cebff75f66b06631db06766ee3a17d0320864.tar.gz qemu-989cebff75f66b06631db06766ee3a17d0320864.tar.bz2 |
Remove noisy printf when KVM masks CPU features
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'target-i386/helper.c')
-rw-r--r-- | target-i386/helper.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index bdf242b..5c03e3a 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; } } |