* [PATCH 55/57] hexagon: irq: Remove IRQF_DISABLED
[not found] <1316597339-29861-1-git-send-email-yong.zhang0@gmail.com>
@ 2011-09-21 9:28 ` Yong Zhang
2011-09-21 15:35 ` Richard Kuo
0 siblings, 1 reply; 3+ messages in thread
From: Yong Zhang @ 2011-09-21 9:28 UTC (permalink / raw)
To: linux-arch, linux-kernel
Cc: tglx, yong.zhang0, Richard Kuo, Linas Vepstas, Arnd Bergmann,
linux-hexagon
Since commit [c58543c8: genirq: Run irq handlers with interrupts disabled],
We run all interrupt handlers with interrupts disabled
and we even check and yell when an interrupt handler
returns with interrupts enabled (see commit [b738a50a:
genirq: Warn when handler enables interrupts]).
So now this flag is a NOOP and can be removed.
Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
---
arch/hexagon/kernel/smp.c | 2 +-
arch/hexagon/kernel/time.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/hexagon/kernel/smp.c b/arch/hexagon/kernel/smp.c
index 96bf6c2..ad43649 100644
--- a/arch/hexagon/kernel/smp.c
+++ b/arch/hexagon/kernel/smp.c
@@ -136,7 +136,7 @@ void send_ipi(const struct cpumask *cpumask, enum ipi_message_type msg)
static struct irqaction ipi_intdesc = {
.handler = handle_ipi,
- .flags = IRQF_DISABLED | IRQF_TRIGGER_RISING,
+ .flags = IRQF_TRIGGER_RISING,
.name = "ipi_handler"
};
diff --git a/arch/hexagon/kernel/time.c b/arch/hexagon/kernel/time.c
index fc8e95c..a4d7b58 100644
--- a/arch/hexagon/kernel/time.c
+++ b/arch/hexagon/kernel/time.c
@@ -181,7 +181,7 @@ static irqreturn_t timer_interrupt(int irq, void *devid)
/* This should also be pulled from devtree */
static struct irqaction rtos_timer_intdesc = {
.handler = timer_interrupt,
- .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_TRIGGER_RISING,
+ .flags = IRQF_TIMER | IRQF_TRIGGER_RISING,
.name = "rtos_timer"
};
--
1.7.4.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 55/57] hexagon: irq: Remove IRQF_DISABLED
2011-09-21 9:28 ` [PATCH 55/57] hexagon: irq: Remove IRQF_DISABLED Yong Zhang
@ 2011-09-21 15:35 ` Richard Kuo
2011-09-22 8:08 ` Yong Zhang
0 siblings, 1 reply; 3+ messages in thread
From: Richard Kuo @ 2011-09-21 15:35 UTC (permalink / raw)
To: Yong Zhang
Cc: linux-arch, linux-kernel, tglx, Linas Vepstas, Arnd Bergmann,
linux-hexagon
Thanks! I already had that timer fixed in my tree, but I had left out the
IPI flag. I will make sure this goes into the next patch series.
Thanks again,
Richard Kuo
On Wed, Sep 21, 2011 at 05:28:56PM +0800, Yong Zhang wrote:
> Since commit [c58543c8: genirq: Run irq handlers with interrupts disabled],
> We run all interrupt handlers with interrupts disabled
> and we even check and yell when an interrupt handler
> returns with interrupts enabled (see commit [b738a50a:
> genirq: Warn when handler enables interrupts]).
>
> So now this flag is a NOOP and can be removed.
>
> Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
> ---
> arch/hexagon/kernel/smp.c | 2 +-
> arch/hexagon/kernel/time.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/hexagon/kernel/smp.c b/arch/hexagon/kernel/smp.c
> index 96bf6c2..ad43649 100644
> --- a/arch/hexagon/kernel/smp.c
> +++ b/arch/hexagon/kernel/smp.c
> @@ -136,7 +136,7 @@ void send_ipi(const struct cpumask *cpumask, enum ipi_message_type msg)
>
> static struct irqaction ipi_intdesc = {
> .handler = handle_ipi,
> - .flags = IRQF_DISABLED | IRQF_TRIGGER_RISING,
> + .flags = IRQF_TRIGGER_RISING,
> .name = "ipi_handler"
> };
>
> diff --git a/arch/hexagon/kernel/time.c b/arch/hexagon/kernel/time.c
> index fc8e95c..a4d7b58 100644
> --- a/arch/hexagon/kernel/time.c
> +++ b/arch/hexagon/kernel/time.c
> @@ -181,7 +181,7 @@ static irqreturn_t timer_interrupt(int irq, void *devid)
> /* This should also be pulled from devtree */
> static struct irqaction rtos_timer_intdesc = {
> .handler = timer_interrupt,
> - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_TRIGGER_RISING,
> + .flags = IRQF_TIMER | IRQF_TRIGGER_RISING,
> .name = "rtos_timer"
> };
>
> --
> 1.7.4.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-hexagon" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 55/57] hexagon: irq: Remove IRQF_DISABLED
2011-09-21 15:35 ` Richard Kuo
@ 2011-09-22 8:08 ` Yong Zhang
0 siblings, 0 replies; 3+ messages in thread
From: Yong Zhang @ 2011-09-22 8:08 UTC (permalink / raw)
To: Richard Kuo
Cc: linux-arch, linux-kernel, tglx, Linas Vepstas, Arnd Bergmann,
linux-hexagon
On Wed, Sep 21, 2011 at 10:35:38AM -0500, Richard Kuo wrote:
> Thanks! I already had that timer fixed in my tree, but I had left out the
> IPI flag. I will make sure this goes into the next patch series.
Thanks.
I'll drop this patch in my next resending.
Thanks,
Yong
>
>
> Thanks again,
> Richard Kuo
>
>
> On Wed, Sep 21, 2011 at 05:28:56PM +0800, Yong Zhang wrote:
> > Since commit [c58543c8: genirq: Run irq handlers with interrupts disabled],
> > We run all interrupt handlers with interrupts disabled
> > and we even check and yell when an interrupt handler
> > returns with interrupts enabled (see commit [b738a50a:
> > genirq: Warn when handler enables interrupts]).
> >
> > So now this flag is a NOOP and can be removed.
> >
> > Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
> > ---
> > arch/hexagon/kernel/smp.c | 2 +-
> > arch/hexagon/kernel/time.c | 2 +-
> > 2 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/arch/hexagon/kernel/smp.c b/arch/hexagon/kernel/smp.c
> > index 96bf6c2..ad43649 100644
> > --- a/arch/hexagon/kernel/smp.c
> > +++ b/arch/hexagon/kernel/smp.c
> > @@ -136,7 +136,7 @@ void send_ipi(const struct cpumask *cpumask, enum ipi_message_type msg)
> >
> > static struct irqaction ipi_intdesc = {
> > .handler = handle_ipi,
> > - .flags = IRQF_DISABLED | IRQF_TRIGGER_RISING,
> > + .flags = IRQF_TRIGGER_RISING,
> > .name = "ipi_handler"
> > };
> >
> > diff --git a/arch/hexagon/kernel/time.c b/arch/hexagon/kernel/time.c
> > index fc8e95c..a4d7b58 100644
> > --- a/arch/hexagon/kernel/time.c
> > +++ b/arch/hexagon/kernel/time.c
> > @@ -181,7 +181,7 @@ static irqreturn_t timer_interrupt(int irq, void *devid)
> > /* This should also be pulled from devtree */
> > static struct irqaction rtos_timer_intdesc = {
> > .handler = timer_interrupt,
> > - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_TRIGGER_RISING,
> > + .flags = IRQF_TIMER | IRQF_TRIGGER_RISING,
> > .name = "rtos_timer"
> > };
> >
> > --
> > 1.7.4.1
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-hexagon" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
>
> --
>
> Sent by an employee of the Qualcomm Innovation Center, Inc.
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
Only stand for myself
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-09-22 8:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1316597339-29861-1-git-send-email-yong.zhang0@gmail.com>
2011-09-21 9:28 ` [PATCH 55/57] hexagon: irq: Remove IRQF_DISABLED Yong Zhang
2011-09-21 15:35 ` Richard Kuo
2011-09-22 8:08 ` Yong Zhang
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).