aboutsummaryrefslogtreecommitdiffstats
path: root/virt/kvm
diff options
context:
space:
mode:
authorYang Zhang <yang.z.zhang@Intel.com>2012-12-12 00:05:12 -0500
committerGleb Natapov <gleb@redhat.com>2012-12-23 03:04:35 -0500
commit871a069db9f29938071b3d214cb964980071ffbf (patch)
tree038149d2708d00ac6411a22fd90eca82531260a5 /virt/kvm
parent7e64e0597fd67c975bfa3e76401bfbcdd5ae0ff9 (diff)
KVM: remove a wrong hack of delivery PIT intr to vcpu0
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>
Diffstat (limited to 'virt/kvm')
-rw-r--r--virt/kvm/ioapic.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/virt/kvm/ioapic.c b/virt/kvm/ioapic.c
index cfb7e4d52dc2..f3abbef46c42 100644
--- a/virt/kvm/ioapic.c
+++ b/virt/kvm/ioapic.c
@@ -179,15 +179,6 @@ static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
179 irqe.level = 1; 179 irqe.level = 1;
180 irqe.shorthand = 0; 180 irqe.shorthand = 0;
181 181
182#ifdef CONFIG_X86
183 /* Always delivery PIT interrupt to vcpu 0 */
184 if (irq == 0) {
185 irqe.dest_mode = 0; /* Physical mode. */
186 /* need to read apic_id from apic regiest since
187 * it can be rewritten */
188 irqe.dest_id = ioapic->kvm->bsp_vcpu_id;
189 }
190#endif
191 return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe); 182 return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe);
192} 183}
193 184