Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d5b4eea1 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

um: Use proper accessors in show_interrupts()



Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
LKML-Reference: <20110206224515.322707425@linutronix.de>
parent 1d119aa0
Loading
Loading
Loading
Loading
+6 −4
Original line number Original line Diff line number Diff line
@@ -35,8 +35,10 @@ int show_interrupts(struct seq_file *p, void *v)
	}
	}


	if (i < NR_IRQS) {
	if (i < NR_IRQS) {
		raw_spin_lock_irqsave(&irq_desc[i].lock, flags);
		struct irq_desc *desc = irq_to_desc(i);
		action = irq_desc[i].action;

		raw_spin_lock_irqsave(&desc->lock, flags);
		action = desc->action;
		if (!action)
		if (!action)
			goto skip;
			goto skip;
		seq_printf(p, "%3d: ",i);
		seq_printf(p, "%3d: ",i);
@@ -46,7 +48,7 @@ int show_interrupts(struct seq_file *p, void *v)
		for_each_online_cpu(j)
		for_each_online_cpu(j)
			seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
			seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
#endif
#endif
		seq_printf(p, " %14s", irq_desc[i].chip->name);
		seq_printf(p, " %14s", get_irq_desc_chip(desc)->name);
		seq_printf(p, "  %s", action->name);
		seq_printf(p, "  %s", action->name);


		for (action=action->next; action; action = action->next)
		for (action=action->next; action; action = action->next)
@@ -54,7 +56,7 @@ int show_interrupts(struct seq_file *p, void *v)


		seq_putc(p, '\n');
		seq_putc(p, '\n');
skip:
skip:
		raw_spin_unlock_irqrestore(&irq_desc[i].lock, flags);
		raw_spin_unlock_irqrestore(&desc->lock, flags);
	} else if (i == NR_IRQS)
	} else if (i == NR_IRQS)
		seq_putc(p, '\n');
		seq_putc(p, '\n');