[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <174721774116.406.2638049997395737811.tip-bot2@tip-bot2>
Date: Wed, 14 May 2025 10:15:41 -0000
From: "tip-bot2 for Jon Hunter" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Jon Hunter <jonathanh@...dia.com>, Thomas Gleixner <tglx@...utronix.de>,
x86@...nel.org, linux-kernel@...r.kernel.org, maz@...nel.org
Subject: [tip: irq/core] genirq/manage: Use the correct lock guard in
irq_set_irq_wake()
The following commit has been merged into the irq/core branch of tip:
Commit-ID: 58eb5721a445ea0af310d1410d7117a1910627bc
Gitweb: https://git.kernel.org/tip/58eb5721a445ea0af310d1410d7117a1910627bc
Author: Jon Hunter <jonathanh@...dia.com>
AuthorDate: Wed, 14 May 2025 10:50:41 +01:00
Committer: Thomas Gleixner <tglx@...utronix.de>
CommitterDate: Wed, 14 May 2025 12:05:58 +02:00
genirq/manage: Use the correct lock guard in irq_set_irq_wake()
Commit 8589e325ba4f ("genirq/manage: Rework irq_set_irq_wake()") updated
the irq_set_irq_wake() to use the new guards for locking the interrupt
descriptor.
However, in doing so it inadvertently changed irq_set_irq_wake() such that
the 'chip_bus_lock' is no longer acquired. This has caused system suspend
tests to fail on some Tegra platforms.
Fix this by correcting the guard used in irq_set_irq_wake() to ensure the
'chip_bus_lock' is held.
Fixes: 8589e325ba4f ("genirq/manage: Rework irq_set_irq_wake()")
Signed-off-by: Jon Hunter <jonathanh@...dia.com>
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
Link: https://lore.kernel.org/all/20250514095041.1109783-1-jonathanh@nvidia.com
---
kernel/irq/manage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index 2861e11..c948373 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -846,7 +846,7 @@ static int set_irq_wake_real(unsigned int irq, unsigned int on)
*/
int irq_set_irq_wake(unsigned int irq, unsigned int on)
{
- scoped_irqdesc_get_and_lock(irq, IRQ_GET_DESC_CHECK_GLOBAL) {
+ scoped_irqdesc_get_and_buslock(irq, IRQ_GET_DESC_CHECK_GLOBAL) {
struct irq_desc *desc = scoped_irqdesc;
int ret = 0;
Powered by blists - more mailing lists