public inbox for linux-m68k@lists.linux-m68k.org
 help / color / mirror / Atom feed
* [PATCH] m68knommu: Use generic show_interrupts()
@ 2011-04-30 21:15 Geert Uytterhoeven
  2011-04-30 23:00 ` Greg Ungerer
  0 siblings, 1 reply; 3+ messages in thread
From: Geert Uytterhoeven @ 2011-04-30 21:15 UTC (permalink / raw)
  To: Greg Ungerer; +Cc: uClinux list, Linux/m68k, Thomas Gleixner

Apart from whitespace differences, /proc/interrupts doesn't change by
enabling GENERIC_IRQ_SHOW.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
_not_ tested on m68knommu.
Observations done on work-in-progress Atari genirq.

 arch/m68k/Kconfig      |    1 +
 arch/m68k/kernel/irq.c |   28 ----------------------------
 2 files changed, 1 insertions(+), 28 deletions(-)

diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig
index dee2796..c23af0a 100644
--- a/arch/m68k/Kconfig
+++ b/arch/m68k/Kconfig
@@ -5,6 +5,7 @@ config M68K
 	select HAVE_AOUT if MMU
 	select GENERIC_ATOMIC64 if MMU
 	select HAVE_GENERIC_HARDIRQS if !MMU
+	select GENERIC_IRQ_SHOW if !MMU
 
 config RWSEM_GENERIC_SPINLOCK
 	bool
diff --git a/arch/m68k/kernel/irq.c b/arch/m68k/kernel/irq.c
index 15dbc3e..544b871 100644
--- a/arch/m68k/kernel/irq.c
+++ b/arch/m68k/kernel/irq.c
@@ -28,31 +28,3 @@ asmlinkage void do_IRQ(int irq, struct pt_regs *regs)
 
 	set_irq_regs(oldregs);
 }
-
-int show_interrupts(struct seq_file *p, void *v)
-{
-	struct irqaction *ap;
-	int irq = *((loff_t *) v);
-
-	if (irq == 0)
-		seq_puts(p, "           CPU0\n");
-
-	if (irq < NR_IRQS) {
-		struct irq_desc *desc = irq_to_desc(irq);
-
-		ap = desc->action;
-		if (ap) {
-			seq_printf(p, "%3d: ", irq);
-			seq_printf(p, "%10u ", kstat_irqs(irq));
-			seq_printf(p, "%14s  ", irq_desc_get_chip(desc)->name);
-
-			seq_printf(p, "%s", ap->name);
-			for (ap = ap->next; ap; ap = ap->next)
-				seq_printf(p, ", %s", ap->name);
-			seq_putc(p, '\n');
-		}
-	}
-
-	return 0;
-}
-
-- 
1.7.0.4

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] m68knommu: Use generic show_interrupts()
  2011-04-30 21:15 [PATCH] m68knommu: Use generic show_interrupts() Geert Uytterhoeven
@ 2011-04-30 23:00 ` Greg Ungerer
  2011-05-01  8:08   ` Geert Uytterhoeven
  0 siblings, 1 reply; 3+ messages in thread
From: Greg Ungerer @ 2011-04-30 23:00 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Greg Ungerer, uClinux list, Linux/m68k, Thomas Gleixner

Hi Geert,

On 01/05/11 07:15, Geert Uytterhoeven wrote:
> Apart from whitespace differences, /proc/interrupts doesn't change by
> enabling GENERIC_IRQ_SHOW.
>
> Signed-off-by: Geert Uytterhoeven<geert@linux-m68k.org>

Works fine on m68knommu, so:

Acked-by: Greg Ungerer <gerg@uclinux.org>

Do you want me to push this via the m68knommu git tree?

Regards
Greg



> ---
> _not_ tested on m68knommu.
> Observations done on work-in-progress Atari genirq.
>
>   arch/m68k/Kconfig      |    1 +
>   arch/m68k/kernel/irq.c |   28 ----------------------------
>   2 files changed, 1 insertions(+), 28 deletions(-)
>
> diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig
> index dee2796..c23af0a 100644
> --- a/arch/m68k/Kconfig
> +++ b/arch/m68k/Kconfig
> @@ -5,6 +5,7 @@ config M68K
>   	select HAVE_AOUT if MMU
>   	select GENERIC_ATOMIC64 if MMU
>   	select HAVE_GENERIC_HARDIRQS if !MMU
> +	select GENERIC_IRQ_SHOW if !MMU
>
>   config RWSEM_GENERIC_SPINLOCK
>   	bool
> diff --git a/arch/m68k/kernel/irq.c b/arch/m68k/kernel/irq.c
> index 15dbc3e..544b871 100644
> --- a/arch/m68k/kernel/irq.c
> +++ b/arch/m68k/kernel/irq.c
> @@ -28,31 +28,3 @@ asmlinkage void do_IRQ(int irq, struct pt_regs *regs)
>
>   	set_irq_regs(oldregs);
>   }
> -
> -int show_interrupts(struct seq_file *p, void *v)
> -{
> -	struct irqaction *ap;
> -	int irq = *((loff_t *) v);
> -
> -	if (irq == 0)
> -		seq_puts(p, "           CPU0\n");
> -
> -	if (irq<  NR_IRQS) {
> -		struct irq_desc *desc = irq_to_desc(irq);
> -
> -		ap = desc->action;
> -		if (ap) {
> -			seq_printf(p, "%3d: ", irq);
> -			seq_printf(p, "%10u ", kstat_irqs(irq));
> -			seq_printf(p, "%14s  ", irq_desc_get_chip(desc)->name);
> -
> -			seq_printf(p, "%s", ap->name);
> -			for (ap = ap->next; ap; ap = ap->next)
> -				seq_printf(p, ", %s", ap->name);
> -			seq_putc(p, '\n');
> -		}
> -	}
> -
> -	return 0;
> -}
> -


-- 
------------------------------------------------------------------------
Greg Ungerer  --  Principal Engineer        EMAIL:     gerg@snapgear.com
SnapGear Group, McAfee                      PHONE:       +61 7 3435 2888
8 Gardner Close                             FAX:         +61 7 3217 5323
Milton, QLD, 4064, Australia                WEB: http://www.SnapGear.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] m68knommu: Use generic show_interrupts()
  2011-04-30 23:00 ` Greg Ungerer
@ 2011-05-01  8:08   ` Geert Uytterhoeven
  0 siblings, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2011-05-01  8:08 UTC (permalink / raw)
  To: Greg Ungerer; +Cc: Greg Ungerer, uClinux list, Linux/m68k, Thomas Gleixner

On Sun, May 1, 2011 at 01:00, Greg Ungerer <gerg@snapgear.com> wrote:
> On 01/05/11 07:15, Geert Uytterhoeven wrote:
>> Apart from whitespace differences, /proc/interrupts doesn't change by
>> enabling GENERIC_IRQ_SHOW.
>>
>> Signed-off-by: Geert Uytterhoeven<geert@linux-m68k.org>
>
> Works fine on m68knommu, so:
>
> Acked-by: Greg Ungerer <gerg@uclinux.org>
>
> Do you want me to push this via the m68knommu git tree?

Yes please. Thx!

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-01  8:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-30 21:15 [PATCH] m68knommu: Use generic show_interrupts() Geert Uytterhoeven
2011-04-30 23:00 ` Greg Ungerer
2011-05-01  8:08   ` Geert Uytterhoeven

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox