[PATCH] rapidio/rio_cm: remove redundant 'flush_workqueue()' calls
From: Chen Ni
Date: Wed Mar 12 2025 - 03:40:46 EST
'destroy_workqueue()' already drains the queue before destroying it, so
there is no need to flush it explicitly.
Remove the redundant 'flush_workqueue()' calls.
This was generated with coccinelle:
@@
expression E;
@@
- flush_workqueue(E);
destroy_workqueue(E);
Signed-off-by: Chen Ni <nichen@xxxxxxxxxxx>
---
drivers/rapidio/rio_cm.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/rapidio/rio_cm.c b/drivers/rapidio/rio_cm.c
index 9135227301c8..c5662c6c52fd 100644
--- a/drivers/rapidio/rio_cm.c
+++ b/drivers/rapidio/rio_cm.c
@@ -2196,7 +2196,6 @@ static void riocm_remove_mport(struct device *dev)
if (!found)
return;
- flush_workqueue(cm->rx_wq);
destroy_workqueue(cm->rx_wq);
/* Release channels bound to this mport */
--
2.25.1