|
|
|
|
|
|
|
|
|
|
xen-ia64-devel
[Xen-ia64-devel] [patch 3/4] fix debug=y build: update ASSERT(acktype)
action->acktype is no longer defined here. Dereference
desc->action->acktype to get to it.
Signed-off-by: Aron Griffis <aron@xxxxxx>
--- a/xen/arch/ia64/xen/irq.c Thu Jun 01 15:32:44 2006 -0400
+++ b/xen/arch/ia64/xen/irq.c Fri Jun 02 10:18:05 2006 -0400
@@ -440,7 +440,7 @@ int pirq_guest_eoi(struct domain *d, int
if ( test_and_clear_bit(irq, &d->pirq_mask) &&
(--((irq_guest_action_t *)desc->action)->in_flight == 0) )
{
- ASSERT(action->ack_type == ACKTYPE_UNMASK);
+ ASSERT(((irq_guest_action_t*)desc->action)->ack_type ==
ACKTYPE_UNMASK);
desc->handler->end(irq);
}
spin_unlock_irq(&desc->lock);
_______________________________________________
Xen-ia64-devel mailing list
Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ia64-devel
|
|
|
|
|