mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: Marc Zyngier <marc.zyngier@arm.com>
Cc: linux-kernel@vger.kernel.org, Geert Uytterhoeven <geert@linux-m68k.org>
Subject: Re: [PATCH] genirq: Skip chained interrupt trigger configuration if type is IRQ_TYPE_NONE
Date: Mon, 19 Sep 2016 11:12:13 +0200 (CEST)	[thread overview]
Message-ID: <alpine.DEB.2.20.1609191111110.5618@nanos> (raw)
In-Reply-To: <1474274967-15984-1-git-send-email-marc.zyngier@arm.com>

On Mon, 19 Sep 2016, Marc Zyngier wrote:
> There is no point in trying to configure the trigger of a chained
> interrupt if no trigger information has been configured. At best
> this is ignored, and at the worse this confuses the underlying
> irqchip (which is likely not to handle such a thing), and
> unnecessarily alarms the user.
> 
> Only apply the configuration if type is not IRQ_TYPE_NONE.
> 
> Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Fixes: 1e12c4a9393b ("genirq: Correctly configure the trigger on chained interrupts")
> Link: https://lkml.kernel.org/r/CAMuHMdVW1eTn20=EtYcJ8hkVwohaSuH_yQXrY2MGBEvZ8fpFOg@mail.gmail.com
> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
> ---
>  kernel/irq/chip.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c
> index 6373890..26ba565 100644
> --- a/kernel/irq/chip.c
> +++ b/kernel/irq/chip.c
> @@ -820,6 +820,8 @@ __irq_do_set_handler(struct irq_desc *desc, irq_flow_handler_t handle,
>  	desc->name = name;
>  
>  	if (handle != handle_bad_irq && is_chained) {
> +		unsigned int type = irqd_get_trigger_type(&desc->irq_data);
> +
>  		/*
>  		 * We're about to start this interrupt immediately,
>  		 * hence the need to set the trigger configuration.
> @@ -828,8 +830,10 @@ __irq_do_set_handler(struct irq_desc *desc, irq_flow_handler_t handle,
>  		 * chained interrupt. Reset it immediately because we
>  		 * do know better.
>  		 */
> -		__irq_set_trigger(desc, irqd_get_trigger_type(&desc->irq_data));
> -		desc->handle_irq = handle;
> +		if (type != IRQ_TYPE_NONE) {
> +			__irq_set_trigger(desc, type);
> +			desc->handle_irq = handle;

Are you really sure that the handler should only be set when the trigger
type is != NONE? I seriously doubt that this is correct.

Thanks,

	tglx

  reply	other threads:[~2016-09-19  9:14 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-19  8:49 Marc Zyngier
2016-09-19  9:12 ` Thomas Gleixner [this message]
2016-09-19  9:19   ` Marc Zyngier
2016-09-19  9:28     ` Thomas Gleixner
2016-09-19  9:30       ` Thomas Gleixner
2016-09-19  9:32       ` Geert Uytterhoeven
2016-09-19  9:22 ` Geert Uytterhoeven
2016-09-19  9:40 ` [tip:irq/urgent] genirq: Skip chained interrupt trigger setup " tip-bot for Marc Zyngier
2016-09-19 23:09 ` tip-bot for Marc Zyngier
2016-09-19 23:41   ` Thomas Gleixner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.DEB.2.20.1609191111110.5618@nanos \
    --to=tglx@linutronix.de \
    --cc=geert@linux-m68k.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marc.zyngier@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®