Also adjust the initial print message, as the IRQ loop has contained
non-guest interrutps for a while now.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
unsigned long flags;
char *ssid;
- printk("Guest interrupt information:\n");
+ printk("IRQ information:\n");
for ( irq = 0; irq < nr_irqs; irq++ )
{
xfree(ssid);
}
+ printk("Direct vector information:\n");
+ for ( i = FIRST_DYNAMIC_VECTOR; i < NR_VECTORS; ++i )
+ if ( direct_apic_vector[i] )
+ {
+ printk(" %#02x -> ", i);
+ print_symbol("%s\n", (unsigned long)direct_apic_vector[i]);
+ }
+
dump_ioapic_irq_info();
}