linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: remove NR_IRQS dependency for ARM-specific HARDIRQ_BITS definition
@ 2011-10-25 11:25 Kevin Hilman
  2011-10-25 11:45 ` Nicolas Pitre
  0 siblings, 1 reply; 3+ messages in thread
From: Kevin Hilman @ 2011-10-25 11:25 UTC (permalink / raw)
  To: Russell King, linux-arm-kernel; +Cc: linux-omap

As a first step towards removing NR_IRQS, remove the ARM customization
of HARDIRQ_BITS based on NR_IRQS.

The generic code in <linux/hardirq.h> already has a default value of
10 for HARDIRQ_BITS which is the max used on ARM, so let's just remove
the NR_IRQS based customization and use the generic default.

Signed-off-by: Kevin Hilman <khilman@ti.com>
---
 arch/arm/include/asm/hardirq.h |   17 -----------------
 1 files changed, 0 insertions(+), 17 deletions(-)

diff --git a/arch/arm/include/asm/hardirq.h b/arch/arm/include/asm/hardirq.h
index 89ad180..96cb097 100644
--- a/arch/arm/include/asm/hardirq.h
+++ b/arch/arm/include/asm/hardirq.h
@@ -30,23 +30,6 @@ u64 smp_irq_stat_cpu(unsigned int cpu);
 
 #define arch_irq_stat_cpu	smp_irq_stat_cpu
 
-#if NR_IRQS > 512
-#define HARDIRQ_BITS	10
-#elif NR_IRQS > 256
-#define HARDIRQ_BITS	9
-#else
-#define HARDIRQ_BITS	8
-#endif
-
-/*
- * The hardirq mask has to be large enough to have space
- * for potentially all IRQ sources in the system nesting
- * on a single CPU:
- */
-#if (1 << HARDIRQ_BITS) < NR_IRQS
-# error HARDIRQ_BITS is too low!
-#endif
-
 #define __ARCH_IRQ_EXIT_IRQS_DISABLED	1
 
 #endif /* __ASM_HARDIRQ_H */
-- 
1.7.3.4


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

* Re: [PATCH] ARM: remove NR_IRQS dependency for ARM-specific HARDIRQ_BITS definition
  2011-10-25 11:25 [PATCH] ARM: remove NR_IRQS dependency for ARM-specific HARDIRQ_BITS definition Kevin Hilman
@ 2011-10-25 11:45 ` Nicolas Pitre
  2011-10-25 13:36   ` Kevin Hilman
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Pitre @ 2011-10-25 11:45 UTC (permalink / raw)
  To: Kevin Hilman; +Cc: Russell King, linux-arm-kernel, linux-omap

On Tue, 25 Oct 2011, Kevin Hilman wrote:

> As a first step towards removing NR_IRQS, remove the ARM customization
> of HARDIRQ_BITS based on NR_IRQS.
> 
> The generic code in <linux/hardirq.h> already has a default value of
> 10 for HARDIRQ_BITS which is the max used on ARM, so let's just remove
> the NR_IRQS based customization and use the generic default.
> 
> Signed-off-by: Kevin Hilman <khilman@ti.com>

Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org>

> ---
>  arch/arm/include/asm/hardirq.h |   17 -----------------
>  1 files changed, 0 insertions(+), 17 deletions(-)
> 
> diff --git a/arch/arm/include/asm/hardirq.h b/arch/arm/include/asm/hardirq.h
> index 89ad180..96cb097 100644
> --- a/arch/arm/include/asm/hardirq.h
> +++ b/arch/arm/include/asm/hardirq.h
> @@ -30,23 +30,6 @@ u64 smp_irq_stat_cpu(unsigned int cpu);
>  
>  #define arch_irq_stat_cpu	smp_irq_stat_cpu
>  
> -#if NR_IRQS > 512
> -#define HARDIRQ_BITS	10
> -#elif NR_IRQS > 256
> -#define HARDIRQ_BITS	9
> -#else
> -#define HARDIRQ_BITS	8
> -#endif
> -
> -/*
> - * The hardirq mask has to be large enough to have space
> - * for potentially all IRQ sources in the system nesting
> - * on a single CPU:
> - */
> -#if (1 << HARDIRQ_BITS) < NR_IRQS
> -# error HARDIRQ_BITS is too low!
> -#endif
> -
>  #define __ARCH_IRQ_EXIT_IRQS_DISABLED	1
>  
>  #endif /* __ASM_HARDIRQ_H */
> -- 
> 1.7.3.4
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
> 

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

* Re: [PATCH] ARM: remove NR_IRQS dependency for ARM-specific HARDIRQ_BITS definition
  2011-10-25 11:45 ` Nicolas Pitre
@ 2011-10-25 13:36   ` Kevin Hilman
  0 siblings, 0 replies; 3+ messages in thread
From: Kevin Hilman @ 2011-10-25 13:36 UTC (permalink / raw)
  To: Nicolas Pitre; +Cc: Russell King, linux-arm-kernel, linux-omap

Nicolas Pitre <nico@fluxnic.net> writes:

> On Tue, 25 Oct 2011, Kevin Hilman wrote:
>
>> As a first step towards removing NR_IRQS, remove the ARM customization
>> of HARDIRQ_BITS based on NR_IRQS.
>> 
>> The generic code in <linux/hardirq.h> already has a default value of
>> 10 for HARDIRQ_BITS which is the max used on ARM, so let's just remove
>> the NR_IRQS based customization and use the generic default.
>> 
>> Signed-off-by: Kevin Hilman <khilman@ti.com>
>
> Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org>

Thanks.

FYI, this is now in Russell's patch system as 7140/1:

http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=7140/1

Kevin

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

end of thread, other threads:[~2011-10-25 13:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-25 11:25 [PATCH] ARM: remove NR_IRQS dependency for ARM-specific HARDIRQ_BITS definition Kevin Hilman
2011-10-25 11:45 ` Nicolas Pitre
2011-10-25 13:36   ` Kevin Hilman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).