dmaengine.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dmaengine: idxd: Set workqueue state to disabled before trying to re-enable
@ 2022-08-24 19:29 Jerry Snitselaar
  2022-08-24 20:29 ` Dave Jiang
  0 siblings, 1 reply; 10+ messages in thread
From: Jerry Snitselaar @ 2022-08-24 19:29 UTC (permalink / raw)
  To: linux-kernel; +Cc: Fenghua Yu, Dave Jiang, Vinod Koul, dmaengine

For a software reset idxd_device_reinit() is called, which will walk
the device workqueues to see which ones were enabled, and try to
re-enable them. It keys off wq->state being iDXD_WQ_ENABLED, but the
first thing idxd_enable_wq() will do is see that the state of the
workqueue is enabled, and return 0 instead of attempting to issue
a command to enable the workqueue.

So once a workqueue is found that needs to be re-enabled,
set the state to disabled prior to calling idxd_enable_wq().
This would accurately reflect the state if the enable fails
as well.

Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Dave Jiang <dave.jiang@intel.com>
Cc: Vinod Koul <vkoul@kernel.org>
Cc: dmaengine@vger.kernel.org
Fixes: bfe1d56091c1 ("dmaengine: idxd: Init and probe for Intel data accelerators")
Signed-off-by: Jerry Snitselaar <jsnitsel@redhat.com>
---
 drivers/dma/idxd/irq.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/dma/idxd/irq.c b/drivers/dma/idxd/irq.c
index 743ead5ebc57..723eeb5328d6 100644
--- a/drivers/dma/idxd/irq.c
+++ b/drivers/dma/idxd/irq.c
@@ -52,6 +52,7 @@ static void idxd_device_reinit(struct work_struct *work)
 		struct idxd_wq *wq = idxd->wqs[i];
 
 		if (wq->state == IDXD_WQ_ENABLED) {
+			wq->state = IDXD_WQ_DISABLED;
 			rc = idxd_wq_enable(wq);
 			if (rc < 0) {
 				dev_warn(dev, "Unable to re-enable wq %s\n",
-- 
2.37.2


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

end of thread, other threads:[~2022-09-19 19:52 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-24 19:29 [PATCH] dmaengine: idxd: Set workqueue state to disabled before trying to re-enable Jerry Snitselaar
2022-08-24 20:29 ` Dave Jiang
2022-08-24 21:16   ` Jerry Snitselaar
2022-08-24 21:59     ` Dave Jiang
2022-08-24 22:07       ` Jerry Snitselaar
2022-08-24 22:19         ` Dave Jiang
2022-08-24 22:21           ` Jerry Snitselaar
2022-09-17 17:05           ` Jerry Snitselaar
2022-09-19 15:28             ` Dave Jiang
2022-09-19 19:52               ` Jerry Snitselaar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).