KVM: x86: use generic function for MSI parsing
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Radim Krčmář <rkrcmar@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
0ca52e7b81
commit
3159d36ad7
@ -388,21 +388,16 @@ void kvm_scan_ioapic_routes(struct kvm_vcpu *vcpu,
|
|||||||
kvm->arch.nr_reserved_ioapic_pins);
|
kvm->arch.nr_reserved_ioapic_pins);
|
||||||
for (i = 0; i < nr_ioapic_pins; ++i) {
|
for (i = 0; i < nr_ioapic_pins; ++i) {
|
||||||
hlist_for_each_entry(entry, &table->map[i], link) {
|
hlist_for_each_entry(entry, &table->map[i], link) {
|
||||||
u32 dest_id, dest_mode;
|
struct kvm_lapic_irq irq;
|
||||||
bool level;
|
|
||||||
|
|
||||||
if (entry->type != KVM_IRQ_ROUTING_MSI)
|
if (entry->type != KVM_IRQ_ROUTING_MSI)
|
||||||
continue;
|
continue;
|
||||||
dest_id = (entry->msi.address_lo >> 12) & 0xff;
|
|
||||||
dest_mode = (entry->msi.address_lo >> 2) & 0x1;
|
|
||||||
level = entry->msi.data & MSI_DATA_TRIGGER_LEVEL;
|
|
||||||
if (level && kvm_apic_match_dest(vcpu, NULL, 0,
|
|
||||||
dest_id, dest_mode)) {
|
|
||||||
u32 vector = entry->msi.data & 0xff;
|
|
||||||
|
|
||||||
__set_bit(vector,
|
kvm_set_msi_irq(entry, &irq);
|
||||||
ioapic_handled_vectors);
|
|
||||||
}
|
if (irq.level && kvm_apic_match_dest(vcpu, NULL, 0,
|
||||||
|
irq.dest_id, irq.dest_mode))
|
||||||
|
__set_bit(irq.vector, ioapic_handled_vectors);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
srcu_read_unlock(&kvm->irq_srcu, idx);
|
srcu_read_unlock(&kvm->irq_srcu, idx);
|
||||||
|
Loading…
Reference in New Issue
Block a user