Searched refs:x86_show_irqstat (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/scripts/gdb/linux/ |
H A D | interrupts.py | 100 def x86_show_irqstat(prec, pfx, field, desc): function 118 text = x86_show_irqstat(prec, "NMI", '__nmi_count', 'Non-maskable interrupts') 121 text += x86_show_irqstat(prec, "LOC", 'apic_timer_irqs', "Local timer interrupts") 122 text += x86_show_irqstat(prec, "SPU", 'irq_spurious_count', "Spurious interrupts") 123 text += x86_show_irqstat(prec, "PMI", 'apic_perf_irqs', "Performance monitoring interrupts") 124 text += x86_show_irqstat(prec, "IWI", 'apic_irq_work_irqs', "IRQ work interrupts") 125 text += x86_show_irqstat(prec, "RTR", 'icr_read_retry_count', "APIC ICR read retries") 127 text += x86_show_irqstat(prec, "PLT", 'x86_platform_ipis', "Platform interrupts") 130 text += x86_show_irqstat(prec, "RES", 'irq_resched_count', "Rescheduling interrupts") 131 text += x86_show_irqstat(prec, "CAL", 'irq_call_count', "Function call interrupts") [all …]
|