Mailing List Archive

Add pending status to irq debugkey dump.
# HG changeset patch
# User kaf24@firebug.cl.cam.ac.uk
# Node ID f26ae65f3f9594138f0c81b52a2471be3ce93370
# Parent e0a0ebad053566f3de8c10b169ffab246aa1317d
Add pending status to irq debugkey dump.

Signed-off-by: Keir Fraser <keir@xensource.com>

diff -r e0a0ebad0535 -r f26ae65f3f95 xen/arch/x86/irq.c
--- a/xen/arch/x86/irq.c Wed Jan 4 11:18:02 2006
+++ b/xen/arch/x86/irq.c Wed Jan 4 11:37:27 2006
@@ -335,17 +335,28 @@
{
action = (irq_guest_action_t *)desc->action;

- printk("IRQ%3d Vec%3d: type=%-15s in-flight=%d domain-list=",
- irq, vector, desc->handler->typename, action->in_flight);
+ printk("IRQ%3d Vec%3d: type=%-15s status=%08x "
+ "in-flight=%d domain-list=",
+ irq, vector, desc->handler->typename,
+ desc->status, action->in_flight);

for ( i = 0; i < action->nr_guests; i++ )
{
d = action->guest[i];
- printk("%u(%c%c)",
+ printk("%u(%c%c%c%c)",
d->domain_id,
(test_bit(d->pirq_to_evtchn[irq],
- &d->shared_info->evtchn_mask[0]) ? 'M' : '-'),
- (test_bit(irq, &d->pirq_mask) ? 'M' : '-'));
+ &d->shared_info->evtchn_pending[0]) ?
+ 'P' : '-'),
+ (test_bit(d->pirq_to_evtchn[irq]/BITS_PER_LONG,
+ &d->shared_info->vcpu_info[0].
+ evtchn_pending_sel) ?
+ 'S' : '-'),
+ (test_bit(d->pirq_to_evtchn[irq],
+ &d->shared_info->evtchn_mask[0]) ?
+ 'M' : '-'),
+ (test_bit(irq, &d->pirq_mask) ?
+ 'M' : '-'));
if ( i != action->nr_guests )
printk(",");
}

_______________________________________________
Xen-changelog mailing list
Xen-changelog@lists.xensource.com
http://lists.xensource.com/xen-changelog