Message ID | 10b87716a125ba44a314d7a185a48d001fd3d338.1354600680.git.peter.crosthwaite@xilinx.com |
---|---|
State | New |
Headers | show |
On 4 December 2012 06:04, Peter Crosthwaite <peter.crosthwaite@xilinx.com> wrote: > Add the relevant CPU nr to this debug message to make IRQ debugging more > informative. > > Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> -- PMM
diff --git a/hw/arm_gic.c b/hw/arm_gic.c index f9e423f..7a10188 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; } }
Add the relevant CPU nr to this debug message to make IRQ debugging more informative. Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> --- hw/arm_gic.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)