Commit 989cebff75f66b06631db06766ee3a17d0320864
1 parent
e7d54ae8
Remove noisy printf when KVM masks CPU features
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Showing
1 changed file
with
0 additions
and
1 deletions
target-i386/helper.c
| ... | ... | @@ -102,7 +102,6 @@ static void kvm_trim_features(uint32_t *features, uint32_t supported, |
| 102 | 102 | for (i = 0; i < 32; ++i) { |
| 103 | 103 | mask = 1U << i; |
| 104 | 104 | if ((*features & mask) && !(supported & mask)) { |
| 105 | - printf("Processor feature %s not supported by kvm\n", names[i]); | |
| 106 | 105 | *features &= ~mask; |
| 107 | 106 | } |
| 108 | 107 | } | ... | ... |