All of lore.kernel.org
 help / color / mirror / Atom feed
From: Maxime Coquelin <maxime.coquelin@st.com>
To: <tglx@linutronix.de>, <hpa@zytor.com>, <patrice.chotard@st.com>,
	<Julia.Lawall@lip6.fr>, <rmk+kernel@arm.linux.org.uk>,
	<mingo@kernel.org>, <linux-kernel@vger.kernel.org>,
	<linus.walleij@linaro.org>, <srinivas.kandagatla@gmail.com>,
	<linux-tip-commits@vger.kernel.org>
Subject: Re: [tip:irq/urgent] pinctrl/st: Fix race in installing chained IRQ handler
Date: Sat, 27 Jun 2015 08:51:24 +0200	[thread overview]
Message-ID: <558E47EC.6010504@st.com> (raw)
In-Reply-To: <tip-1b11b0cb799e5f82ca6391a23eaa8f41c7466cc0@git.kernel.org>

Hello Thomas,

On 06/26/2015 09:45 PM, tip-bot for Thomas Gleixner wrote:
> Commit-ID:  1b11b0cb799e5f82ca6391a23eaa8f41c7466cc0
> Gitweb:     http://git.kernel.org/tip/1b11b0cb799e5f82ca6391a23eaa8f41c7466cc0
> Author:     Thomas Gleixner <tglx@linutronix.de>
> AuthorDate: Sun, 21 Jun 2015 20:16:15 +0200
> Committer:  Thomas Gleixner <tglx@linutronix.de>
> CommitDate: Thu, 25 Jun 2015 11:57:09 +0200
>
> pinctrl/st: Fix race in installing chained IRQ handler
>
> Fix a race where a pending interrupt could be received and the handler
> called before the handler's data has been setup, by converting to
> irq_set_chained_handler_and_data().
>
> Search and conversion was done with coccinelle:
>
> @@
> expression E1, E2, E3;
> @@
> (
> -if (irq_set_chained_handler(E1, E3) != 0)
> -   BUG();
> |
> -irq_set_chained_handler(E1, E3);
> )
> -irq_set_handler_data(E1, E2);
> +irq_set_chained_handler_and_data(E1, E3, E2);
>
> @@
> expression E1, E2, E3;
> @@
> (
> -if (irq_set_chained_handler(E1, E3) != 0)
> -   BUG();
> ...
> |
> -irq_set_chained_handler(E1, E3);
> ...
> )
> -irq_set_handler_data(E1, E2);
> +irq_set_chained_handler_and_data(E1, E3, E2);
>
> Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> Cc: Julia Lawall <Julia.Lawall@lip6.fr>
> Cc: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
> Cc: Maxime Coquelin <maxime.coquelin@st.com>
> Cc: Patrice Chotard <patrice.chotard@st.com>
> Cc: Linus Walleij <linus.walleij@linaro.org>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: kernel@stlinux.com
> Cc: linux-gpio@vger.kernel.org
> ---
>   drivers/pinctrl/pinctrl-st.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/pinctrl/pinctrl-st.c b/drivers/pinctrl/pinctrl-st.c
> index 65bf73b..10e9c4e8 100644
> --- a/drivers/pinctrl/pinctrl-st.c
> +++ b/drivers/pinctrl/pinctrl-st.c
> @@ -1661,8 +1661,8 @@ static int st_pctl_probe_dt(struct platform_device *pdev,
>   		if (IS_ERR(info->irqmux_base))
>   			return PTR_ERR(info->irqmux_base);
>   
> -		irq_set_chained_handler(irq, st_gpio_irqmux_handler);
> -		irq_set_handler_data(irq, info);
> +		irq_set_chained_handler_and_data(irq, st_gpio_irqmux_handler,
> +						 info);
>   
>   	}
>   

I cannot test the patch before Monday, but it looks good to me:
Acked-by: Maxime Coquelin <maxime.coquelin@st.com>

Thanks!
Maxime

       reply	other threads:[~2015-06-27  6:53 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <tip-1b11b0cb799e5f82ca6391a23eaa8f41c7466cc0@git.kernel.org>
2015-06-27  6:51 ` Maxime Coquelin [this message]
2015-06-29  7:08 ` [tip:irq/urgent] pinctrl/st: Fix race in installing chained IRQ handler Patrice Chotard

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=558E47EC.6010504@st.com \
    --to=maxime.coquelin@st.com \
    --cc=Julia.Lawall@lip6.fr \
    --cc=hpa@zytor.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=patrice.chotard@st.com \
    --cc=rmk+kernel@arm.linux.org.uk \
    --cc=srinivas.kandagatla@gmail.com \
    --cc=tglx@linutronix.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.