We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97ef275 commit 5191e0bCopy full SHA for 5191e0b
arch/powerpc/sysdev/xive/common.c
@@ -280,7 +280,10 @@ int xmon_xive_get_irq_config(u32 hw_irq, struct irq_data *d)
280
struct xive_irq_data *xd = irq_data_get_irq_handler_data(d);
281
u64 val = xive_esb_read(xd, XIVE_ESB_GET);
282
283
- xmon_printf("PQ=%c%c",
+ xmon_printf("flags=%c%c%c PQ=%c%c",
284
+ xd->flags & XIVE_IRQ_FLAG_STORE_EOI ? 'S' : ' ',
285
+ xd->flags & XIVE_IRQ_FLAG_LSI ? 'L' : ' ',
286
+ xd->flags & XIVE_IRQ_FLAG_H_INT_ESB ? 'H' : ' ',
287
val & XIVE_ESB_VAL_P ? 'P' : '-',
288
val & XIVE_ESB_VAL_Q ? 'Q' : '-');
289
}
0 commit comments