From: Peter Crosthwaite Date: Tue, 4 Dec 2012 06:04:36 +0000 (+1000) Subject: arm_gic: Add cpu nr to Raised IRQ message X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8c815fb30ed1940c66389be728b29d5ebdf05c0e;p=qemu.git arm_gic: Add cpu nr to Raised IRQ message Add the relevant CPU nr to this debug message to make IRQ debugging more informative. Signed-off-by: Peter Crosthwaite Reviewed-by: Peter Maydell Signed-off-by: Stefan Hajnoczi --- diff --git a/hw/arm_gic.c b/hw/arm_gic.c index 8d769de4f5..b6062c4241 100644 --- a/hw/arm_gic.c +++ b/hw/arm_gic.c @@ -76,7 +76,7 @@ void gic_update(GICState *s) if (best_prio < s->priority_mask[cpu]) { s->current_pending[cpu] = best_irq; if (best_prio < s->running_priority[cpu]) { - DPRINTF("Raised pending IRQ %d\n", best_irq); + DPRINTF("Raised pending IRQ %d (cpu %d)\n", best_irq, cpu); level = 1; } }