* [PATCH v3] dmaengine: idxd: fix calling wq quiesce inside spinlock
@ 2021-11-17 17:03 Dave Jiang
2021-11-22 7:00 ` Vinod Koul
0 siblings, 1 reply; 2+ messages in thread
From: Dave Jiang @ 2021-11-17 17:03 UTC (permalink / raw)
To: vkoul; +Cc: Dan Carpenter, dmaengine
Dan reports that smatch has found idxd_wq_quiesce() is being called inside
the idxd->dev_lock. idxd_wq_quiesce() calls wait_for_completion() and
therefore it can sleep. Move the call outside of the spinlock as it does
not need device lock.
Fixes: 5b0c68c473a1 ("dmaengine: idxd: support reporting of halt interrupt")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
---
v3:
Rebase against 5.16-rc dmaengine/fixes
v2:
Rebase against 5.15-rc dmaengine/fixes
drivers/dma/idxd/irq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/dma/idxd/irq.c b/drivers/dma/idxd/irq.c
index 17f2f8a31b63..cf2c8bc4f147 100644
--- a/drivers/dma/idxd/irq.c
+++ b/drivers/dma/idxd/irq.c
@@ -137,10 +137,10 @@ static int process_misc_interrupts(struct idxd_device *idxd, u32 cause)
INIT_WORK(&idxd->work, idxd_device_reinit);
queue_work(idxd->wq, &idxd->work);
} else {
- spin_lock(&idxd->dev_lock);
idxd->state = IDXD_DEV_HALTED;
idxd_wqs_quiesce(idxd);
idxd_wqs_unmap_portal(idxd);
+ spin_lock(&idxd->dev_lock);
idxd_device_clear_state(idxd);
dev_err(&idxd->pdev->dev,
"idxd halted, need %s.\n",
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v3] dmaengine: idxd: fix calling wq quiesce inside spinlock
2021-11-17 17:03 [PATCH v3] dmaengine: idxd: fix calling wq quiesce inside spinlock Dave Jiang
@ 2021-11-22 7:00 ` Vinod Koul
0 siblings, 0 replies; 2+ messages in thread
From: Vinod Koul @ 2021-11-22 7:00 UTC (permalink / raw)
To: Dave Jiang; +Cc: Dan Carpenter, dmaengine
On 17-11-21, 10:03, Dave Jiang wrote:
> Dan reports that smatch has found idxd_wq_quiesce() is being called inside
> the idxd->dev_lock. idxd_wq_quiesce() calls wait_for_completion() and
> therefore it can sleep. Move the call outside of the spinlock as it does
> not need device lock.
Applied, thanks
--
~Vinod
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-11-22 7:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-17 17:03 [PATCH v3] dmaengine: idxd: fix calling wq quiesce inside spinlock Dave Jiang
2021-11-22 7:00 ` Vinod Koul
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox