Lines Matching refs:text

24     text = ""
28 return text
32 return text
35 return text
43 return text;
45 text += "%*d: " % (prec, irq)
51 text += "%10u" % (count)
61 text += " %8s" % (name)
64 text += " %*lu" % (prec, desc['irq_data']['hwirq'])
66 text += " %*s" % (prec, "")
69 text += " %-8s" % ("Level" if irqd_is_level(desc) else "Edge")
72 text += "-%-8s" % (desc['name'].string())
79 text += " %s" % (action['name'].string())
85 text += ", %s" % (action['name'].string())
89 text += "\n"
91 return text
95 text = ""
97 text += "%*s: %10u\n" % (prec, "ERR", cnt['counter'])
98 return text
102 text = "%*s: " % (prec, pfx)
105 text += "%10u " % (stat[field])
106 text += " %s\n" % (desc)
107 return text
111 text = "%*s: " % (prec, pfx)
113 text += "%10u " % (cpus.per_cpu(pvar, cpu))
114 text += " %s\n" % (desc)
115 return text
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")
132 text += x86_show_irqstat(prec, "TLB", 'irq_tlb_count', "TLB shootdowns")
135 text += x86_show_irqstat(prec, "TRM", 'irq_thermal_count', "Thermal events interrupts")
138 text += x86_show_irqstat(prec, "THR", 'irq_threshold_count', "Threshold APIC interrupts")
141 text += x86_show_irqstat(prec, "DFR", 'irq_deferred_error_count', "Deferred Error APIC interrupts")
144 text += x86_show_mce(prec, "&mce_exception_count", "MCE", "Machine check exceptions")
145 text == x86_show_mce(prec, "&mce_poll_count", "MCP", "Machine check polls")
147 text += show_irq_err_count(prec)
152 text += "%*s: %10u\n" % (prec, "MIS", cnt['counter'])
155 text += x86_show_irqstat(prec, "PIN", 'kvm_posted_intr_ipis', 'Posted-interrupt notification event')
156 text += x86_show_irqstat(prec, "NPI", 'kvm_posted_intr_nested_ipis', 'Nested posted-interrupt event')
157 text += x86_show_irqstat(prec, "PIW", 'kvm_posted_intr_wakeup_ipis', 'Posted-interrupt wakeup event')
159 return text
162 text = ""
167 return text
175 text += "%*s%u:%s" % (prec - 1, "IPI", ipi, sep)
180 text += "%10u" % (cpus.per_cpu(desc['kstat_irqs'], cpu))
181 text += " %s" % (ipi_types[ipi].string())
182 text += "\n"
183 return text
186 text = arm_common_show_interrupts(prec)
187 text += "%*s: %10lu\n" % (prec, "ERR", gdb.parse_and_eval("irq_err_count"))
188 return text
191 text = ""
193 text += x86_show_interupts(prec)
195 text += aarch64_show_interrupts(prec)
197 text += arm_common_show_interrupts(prec)
199 text += show_irq_err_count(prec)
203 return text