Commit 871a069db9f29938071b3d214cb964980071ffbf

Authored by Yang Zhang
Committed by Gleb Natapov
1 parent 7e64e0597f

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>

Showing 1 changed file with 0 additions and 9 deletions Side-by-side Diff

... ... @@ -179,15 +179,6 @@
179 179 irqe.level = 1;
180 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 182 return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe);
192 183 }
193 184