public inbox for linux-rt-users@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mailbox: qcom-ipcc: Use generic_handle_irq_safe()
@ 2022-09-09 16:20 Eric Chanudet
  2022-09-13  9:40 ` Sebastian Andrzej Siewior
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Chanudet @ 2022-09-09 16:20 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Manivannan Sadhasivam, Jassi Brar
  Cc: linux-arm-msm, linux-rt-users, linux-kernel, Eric Chanudet

PREEMPT_RT forces qcom-ipcc's handler to be threaded with interrupts
enabled, which triggers a warning in __handle_irq_event_percpu().

Use generic_handle_irq_safe() that can be called with or without
interrupts enabled instead.

Signed-off-by: Eric Chanudet <echanude@redhat.com>
---
 drivers/mailbox/qcom-ipcc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mailbox/qcom-ipcc.c b/drivers/mailbox/qcom-ipcc.c
index 31d58b7d55fe..be803f324a33 100644
--- a/drivers/mailbox/qcom-ipcc.c
+++ b/drivers/mailbox/qcom-ipcc.c
@@ -82,7 +82,7 @@ static irqreturn_t qcom_ipcc_irq_fn(int irq, void *data)
 
 		virq = irq_find_mapping(ipcc->irq_domain, hwirq);
 		writel(hwirq, ipcc->base + IPCC_REG_RECV_SIGNAL_CLEAR);
-		generic_handle_irq(virq);
+		generic_handle_irq_safe(virq);
 	}
 
 	return IRQ_HANDLED;
-- 
2.37.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-10-03 17:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-09 16:20 [PATCH] mailbox: qcom-ipcc: Use generic_handle_irq_safe() Eric Chanudet
2022-09-13  9:40 ` Sebastian Andrzej Siewior
2022-10-03 17:23   ` Eric Chanudet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox