diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2008-09-30 04:41:06 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2008-10-15 08:25:30 -0400 |
commit | 1b10bf31a5de5b76e2e9c2937878a45c5ae2be37 (patch) | |
tree | 1949c55a5ca54ecaf921c9687a56c013185647ca /arch/x86/kvm/x86.c | |
parent | e5fcfc821a467bd0827635db8fd39ab1213987e5 (diff) |
KVM: x86: Silence various LAPIC-related host kernel messages
KVM-x86 dumps a lot of debug messages that have no meaning for normal
operation:
- INIT de-assertion is ignored
- SIPIs are sent and received
- APIC writes are unaligned or < 4 byte long
(Windows Server 2003 triggers this on SMP)
Degrade them to true debug messages, keeping the host kernel log clean
for real problems.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r-- | arch/x86/kvm/x86.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 4cfdd1b6df0b..d6d7123d2644 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -3224,8 +3224,8 @@ static int __vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) | |||
3224 | int r; | 3224 | int r; |
3225 | 3225 | ||
3226 | if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_SIPI_RECEIVED)) { | 3226 | if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_SIPI_RECEIVED)) { |
3227 | printk("vcpu %d received sipi with vector # %x\n", | 3227 | pr_debug("vcpu %d received sipi with vector # %x\n", |
3228 | vcpu->vcpu_id, vcpu->arch.sipi_vector); | 3228 | vcpu->vcpu_id, vcpu->arch.sipi_vector); |
3229 | kvm_lapic_reset(vcpu); | 3229 | kvm_lapic_reset(vcpu); |
3230 | r = kvm_x86_ops->vcpu_reset(vcpu); | 3230 | r = kvm_x86_ops->vcpu_reset(vcpu); |
3231 | if (r) | 3231 | if (r) |