From: Herve Codina <herve.codina@bootlin.com>
To: Thomas Gleixner <tglx@linutronix.de>
Cc: LKML <linux-kernel@vger.kernel.org>,
"Jiri Slaby" <jirislaby@kernel.org>,
"Talel Shenhar" <talel@amazon.com>,
"Nicolas Ferre" <nicolas.ferre@microchip.com>,
"Alexandre Belloni" <alexandre.belloni@bootlin.com>,
"Claudiu Beznea" <claudiu.beznea@tuxon.dev>,
"Florian Fainelli" <florian.fainelli@broadcom.com>,
"Guo Ren" <guoren@kernel.org>,
"Huacai Chen" <chenhuacai@kernel.org>,
"Jiaxun Yang" <jiaxun.yang@flygoat.com>,
"Maxime Coquelin" <mcoquelin.stm32@gmail.com>,
"Alexandre Torgue" <alexandre.torgue@foss.st.com>,
"Chen-Yu Tsai" <wens@csie.org>,
"Jernej Skrabec" <jernej.skrabec@gmail.com>,
"Samuel Holland" <samuel@sholland.org>,
"Andrew Lunn" <andrew@lunn.ch>,
"Sebastian Hesselbarth" <sebastian.hesselbarth@gmail.com>,
"Gregory Clement" <gregory.clement@bootlin.com>,
"Uwe Kleine-König" <ukleinek@kernel.org>,
"Linus Walleij" <linus.walleij@linaro.org>,
"Bartosz Golaszewski" <brgl@bgdev.pl>
Subject: Re: [patch 6/7] irqchip: Convert generic irqchip locking to guards
Date: Fri, 14 Mar 2025 18:20:21 +0100 [thread overview]
Message-ID: <20250314182021.3f6024c5@bootlin.com> (raw)
In-Reply-To: <20250313142524.325627746@linutronix.de>
Hi Thomas,
On Thu, 13 Mar 2025 15:31:27 +0100 (CET)
Thomas Gleixner <tglx@linutronix.de> wrote:
> Conversion was done with Coccinelle and a few manual fixups.
>
> In a few interrupt chip callbacks this changes replaces
> raw_spin_lock_irqsave() with a guard(raw_spinlock). That's intended and
> correct because those interrupt chip callbacks are invoked with the
> interrupt descriptor lock held and interrupts disabled. No point in using
> the irqsave variant.
>
> No functional change.
>
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> Cc: Talel Shenhar <talel@amazon.com>
> Cc: Nicolas Ferre <nicolas.ferre@microchip.com>
> Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>
> Cc: Claudiu Beznea <claudiu.beznea@tuxon.dev>
> Cc: Florian Fainelli <florian.fainelli@broadcom.com>
> Cc: Guo Ren <guoren@kernel.org>
> Cc: Herve Codina <herve.codina@bootlin.com>
> Cc: Huacai Chen <chenhuacai@kernel.org>
> Cc: Jiaxun Yang <jiaxun.yang@flygoat.com>
> Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>
> Cc: Alexandre Torgue <alexandre.torgue@foss.st.com>
> Cc: Chen-Yu Tsai <wens@csie.org>
> Cc: Jernej Skrabec <jernej.skrabec@gmail.com>
> Cc: Samuel Holland <samuel@sholland.org>
> ---
> drivers/irqchip/irq-al-fic.c | 18 +++++-------------
> drivers/irqchip/irq-atmel-aic.c | 19 ++++++-------------
> drivers/irqchip/irq-atmel-aic5.c | 28 ++++++++--------------------
> drivers/irqchip/irq-bcm7120-l2.c | 22 +++++++++-------------
> drivers/irqchip/irq-brcmstb-l2.c | 8 ++------
> drivers/irqchip/irq-csky-apb-intc.c | 3 +--
> drivers/irqchip/irq-dw-apb-ictl.c | 3 +--
> drivers/irqchip/irq-ingenic-tcu.c | 9 +++------
> drivers/irqchip/irq-lan966x-oic.c | 18 +++++++-----------
> drivers/irqchip/irq-loongson-liointc.c | 9 ++-------
> drivers/irqchip/irq-mscc-ocelot.c | 3 +--
> drivers/irqchip/irq-stm32-exti.c | 21 ++++++---------------
> drivers/irqchip/irq-sunxi-nmi.c | 9 ++-------
> drivers/irqchip/irq-tb10x.c | 13 +++----------
> 14 files changed, 56 insertions(+), 127 deletions(-)
>
...
> --- a/drivers/irqchip/irq-lan966x-oic.c
> +++ b/drivers/irqchip/irq-lan966x-oic.c
> @@ -71,14 +71,12 @@ static unsigned int lan966x_oic_irq_star
> struct lan966x_oic_chip_regs *chip_regs = gc->private;
> u32 map;
>
> - irq_gc_lock(gc);
> -
> - /* Map the source interrupt to the destination */
> - map = irq_reg_readl(gc, chip_regs->reg_off_map);
> - map |= data->mask;
> - irq_reg_writel(gc, map, chip_regs->reg_off_map);
> -
> - irq_gc_unlock(gc);
> + scoped_guard (raw_spinlock, &gc->lock) {
> + /* Map the source interrupt to the destination */
> + map = irq_reg_readl(gc, chip_regs->reg_off_map);
> + map |= data->mask;
> + irq_reg_writel(gc, map, chip_regs->reg_off_map);
> + }
>
> ct->chip.irq_ack(data);
> ct->chip.irq_unmask(data);
> @@ -95,14 +93,12 @@ static void lan966x_oic_irq_shutdown(str
>
> ct->chip.irq_mask(data);
>
> - irq_gc_lock(gc);
> + guard(raw_spinlock)(&gc->lock);
>
> /* Unmap the interrupt */
> map = irq_reg_readl(gc, chip_regs->reg_off_map);
> map &= ~data->mask;
> irq_reg_writel(gc, map, chip_regs->reg_off_map);
> -
> - irq_gc_unlock(gc);
> }
Here, I would really prefer a scoped_guard() to clearly identify what is
protected such as:
scoped_guard (raw_spinlock, &gc->lock) {
/* Unmap the interrupt */
map = irq_reg_readl(gc, chip_regs->reg_off_map);
map &= ~data->mask;
irq_reg_writel(gc, map, chip_regs->reg_off_map);
}
IMHO, guard() is nice when it protects an entire function but it can be
missed when it is present in a middle of code (looks too much like a
simple C function call).
Best regards,
Hervé
next prev parent reply other threads:[~2025-03-14 17:47 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-13 14:31 [patch 0/7] genirq/generic_chip: Convert locking to guards Thomas Gleixner
2025-03-13 14:31 ` [patch 1/7] genirq/generic-chip: Make locking unconditional Thomas Gleixner
2025-04-07 7:53 ` [tip: irq/drivers] " tip-bot2 for Thomas Gleixner
2025-03-13 14:31 ` [patch 2/7] genirq/generic-chip: Convert core code to lock guards Thomas Gleixner
2025-03-14 10:55 ` Linus Walleij
2025-04-07 7:53 ` [tip: irq/drivers] " tip-bot2 for Thomas Gleixner
2025-04-08 18:10 ` [patch 2/7] " Geert Uytterhoeven
2025-03-13 14:31 ` [patch 3/7] soc: dove: Convert generic irqchip locking to guard() Thomas Gleixner
2025-03-13 14:48 ` Andrew Lunn
2025-03-14 10:57 ` Linus Walleij
2025-04-07 7:53 ` [tip: irq/drivers] " tip-bot2 for Thomas Gleixner
2025-03-13 14:31 ` [patch 4/7] ARM: orion/gpio:: " Thomas Gleixner
2025-03-14 10:56 ` Linus Walleij
2025-04-07 7:53 ` [tip: irq/drivers] " tip-bot2 for Thomas Gleixner
2025-04-14 14:29 ` [patch 4/7] " Gregory CLEMENT
2025-03-13 14:31 ` [patch 5/7] gpio: mvebu: " Thomas Gleixner
2025-03-14 10:19 ` Bartosz Golaszewski
2025-03-14 11:07 ` Linus Walleij
2025-04-07 7:53 ` [tip: irq/drivers] " tip-bot2 for Thomas Gleixner
2025-03-13 14:31 ` [patch 6/7] irqchip: Convert generic irqchip locking to guards Thomas Gleixner
2025-03-14 10:56 ` Linus Walleij
2025-03-14 17:20 ` Herve Codina [this message]
2025-04-07 7:53 ` [tip: irq/drivers] " tip-bot2 for Thomas Gleixner
2025-03-13 14:31 ` [patch 7/7] genirq/generic-chip: Remove unused lock wrappers Thomas Gleixner
2025-04-07 7:53 ` [tip: irq/drivers] " tip-bot2 for Thomas Gleixner
2025-03-16 8:50 ` [patch 0/7] genirq/generic_chip: Convert locking to guards Markus Elfring
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=20250314182021.3f6024c5@bootlin.com \
--to=herve.codina@bootlin.com \
--cc=alexandre.belloni@bootlin.com \
--cc=alexandre.torgue@foss.st.com \
--cc=andrew@lunn.ch \
--cc=brgl@bgdev.pl \
--cc=chenhuacai@kernel.org \
--cc=claudiu.beznea@tuxon.dev \
--cc=florian.fainelli@broadcom.com \
--cc=gregory.clement@bootlin.com \
--cc=guoren@kernel.org \
--cc=jernej.skrabec@gmail.com \
--cc=jiaxun.yang@flygoat.com \
--cc=jirislaby@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mcoquelin.stm32@gmail.com \
--cc=nicolas.ferre@microchip.com \
--cc=samuel@sholland.org \
--cc=sebastian.hesselbarth@gmail.com \
--cc=talel@amazon.com \
--cc=tglx@linutronix.de \
--cc=ukleinek@kernel.org \
--cc=wens@csie.org \
/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