From: awilliam@xenbuild.aw Date: Sat, 3 Jun 2006 20:42:13 +0000 (-0600) Subject: [IA64] fix debug=y build: update ASSERT(acktype) X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16001 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=637abce44f450fb19e48a13835125f5ceceefad4;p=xen.git [IA64] 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 --- diff --git a/xen/arch/ia64/xen/irq.c b/xen/arch/ia64/xen/irq.c index 5218d0e364..294388043f 100644 --- a/xen/arch/ia64/xen/irq.c +++ b/xen/arch/ia64/xen/irq.c @@ -440,7 +440,7 @@ int pirq_guest_eoi(struct domain *d, int irq) 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);