aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/lapic.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kvm/lapic.c')
-rw-r--r--arch/x86/kvm/lapic.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c
index 5d697602048b..66122bfc74a9 100644
--- a/arch/x86/kvm/lapic.c
+++ b/arch/x86/kvm/lapic.c
@@ -597,14 +597,14 @@ static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
597 static const u64 rmask = 0x43ff01ffffffe70cULL; 597 static const u64 rmask = 0x43ff01ffffffe70cULL;
598 598
599 if ((alignment + len) > 4) { 599 if ((alignment + len) > 4) {
600 printk(KERN_ERR "KVM_APIC_READ: alignment error %x %d\n", 600 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
601 offset, len); 601 offset, len);
602 return 1; 602 return 1;
603 } 603 }
604 604
605 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) { 605 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
606 printk(KERN_ERR "KVM_APIC_READ: read reserved register %x\n", 606 apic_debug("KVM_APIC_READ: read reserved register %x\n",
607 offset); 607 offset);
608 return 1; 608 return 1;
609 } 609 }
610 610