Commit 4079c7f7 authored by Alexander Lobakin's avatar Alexander Lobakin Committed by David S. Miller

net: qede: stop adding events on an already destroyed workqueue

Set rdma_wq pointer to NULL after destroying the workqueue and check
for it when adding new events to fix crashes on driver unload.

Fixes: cee9fbd8 ("qede: Add qedr framework")
Signed-off-by: default avatarAlexander Lobakin <alobakin@marvell.com>
Signed-off-by: default avatarIgor Russkikh <irusskikh@marvell.com>
Signed-off-by: default avatarMichal Kalderon <michal.kalderon@marvell.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 31333c1a
...@@ -105,6 +105,7 @@ static void qede_rdma_destroy_wq(struct qede_dev *edev) ...@@ -105,6 +105,7 @@ static void qede_rdma_destroy_wq(struct qede_dev *edev)
qede_rdma_cleanup_event(edev); qede_rdma_cleanup_event(edev);
destroy_workqueue(edev->rdma_info.rdma_wq); destroy_workqueue(edev->rdma_info.rdma_wq);
edev->rdma_info.rdma_wq = NULL;
} }
int qede_rdma_dev_add(struct qede_dev *edev, bool recovery) int qede_rdma_dev_add(struct qede_dev *edev, bool recovery)
...@@ -325,7 +326,7 @@ static void qede_rdma_add_event(struct qede_dev *edev, ...@@ -325,7 +326,7 @@ static void qede_rdma_add_event(struct qede_dev *edev,
if (edev->rdma_info.exp_recovery) if (edev->rdma_info.exp_recovery)
return; return;
if (!edev->rdma_info.qedr_dev) if (!edev->rdma_info.qedr_dev || !edev->rdma_info.rdma_wq)
return; return;
/* We don't want the cleanup flow to start while we're allocating and /* We don't want the cleanup flow to start while we're allocating and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment