KVM: remove a wrong hack of delivery PIT intr to vcpu0
authorYang Zhang <yang.z.zhang@Intel.com>
Wed, 12 Dec 2012 05:05:12 +0000 (13:05 +0800)
committerGleb Natapov <gleb@redhat.com>
Sun, 23 Dec 2012 08:04:35 +0000 (10:04 +0200)
This hack is wrong. The pin number of PIT is connected to
2 not 0. This means this hack never takes effect. So it is ok
to remove it.

Signed-off-by: Yang Zhang <yang.z.zhang@Intel.com>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
virt/kvm/ioapic.c

index cfb7e4d52dc26d1c832eb2a554d8a8ed1d9d23c3..f3abbef46c422effa2ff290baeb7bbdae108074a 100644 (file)
@@ -179,15 +179,6 @@ static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
        irqe.level = 1;
        irqe.shorthand = 0;
 
-#ifdef CONFIG_X86
-       /* Always delivery PIT interrupt to vcpu 0 */
-       if (irq == 0) {
-               irqe.dest_mode = 0; /* Physical mode. */
-               /* need to read apic_id from apic regiest since
-                * it can be rewritten */
-               irqe.dest_id = ioapic->kvm->bsp_vcpu_id;
-       }
-#endif
        return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe);
 }
 
This page took 0.037769 seconds and 5 git commands to generate.