[PATCH 4/6] powerpc: Make virq_debug_show() cope with sparse irq_descs
Grant Likely
grant.likely at secretlab.ca
Thu Oct 15 05:34:44 EST 2009
On Tue, Oct 13, 2009 at 11:44 PM, Michael Ellerman
<michael at ellerman.id.au> wrote:
> Signed-off-by: Michael Ellerman <michael at ellerman.id.au>
Acked-by: Grant Likely <grant.likely at secretlab.ca>
> ---
> arch/powerpc/kernel/irq.c | 5 ++++-
> 1 files changed, 4 insertions(+), 1 deletions(-)
>
> diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c
> index 6563221..baa49eb 100644
> --- a/arch/powerpc/kernel/irq.c
> +++ b/arch/powerpc/kernel/irq.c
> @@ -1065,8 +1065,11 @@ static int virq_debug_show(struct seq_file *m, void *private)
> seq_printf(m, "%-5s %-7s %-15s %s\n", "virq", "hwirq",
> "chip name", "host name");
>
> - for (i = 1; i < NR_IRQS; i++) {
> + for (i = 1; i < nr_irqs; i++) {
> desc = irq_to_desc(i);
> + if (!desc)
> + continue;
> +
> spin_lock_irqsave(&desc->lock, flags);
>
> if (desc->action && desc->action->handler) {
> --
> 1.6.2.1
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev at lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev
>
--
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.
More information about the Linuxppc-dev
mailing list