From: Yuho Choi <dbgh9129@gmail.com>
To: njavali@marvell.com, GR-QLogic-Storage-Upstream@marvell.com,
James.Bottomley@HansenPartnership.com,
martin.petersen@oracle.com
Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org,
Yuho Choi <dbgh9129@gmail.com>
Subject: [PATCH v1] scsi: qla2xxx: Cancel qpair work before freeing queues
Date: Sun, 2 Aug 2026 19:00:39 -0400 [thread overview]
Message-ID: <20260802230039.586918-1-dbgh9129@gmail.com> (raw)
The qpair response interrupt handler queues q_work with qpair as its
context. qla2xxx_create_qpair() frees qpair on setup failure after deleting
the response queue, but does not cancel work queued before the failure.
qla2xxx_delete_qpair() has the same ordering issue.
Mark the qpair as being deleted and cancel its work before deleting the
request and response queues and freeing qpair.
Fixes: d74595278f4a ("scsi: qla2xxx: Add multiple queue pair functionality.")
Signed-off-by: Yuho Choi <dbgh9129@gmail.com>
---
drivers/scsi/qla2xxx/qla_init.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c
index e746c9274cde..d5cd33e84720 100644
--- a/drivers/scsi/qla2xxx/qla_init.c
+++ b/drivers/scsi/qla2xxx/qla_init.c
@@ -10001,10 +10001,16 @@ struct qla_qpair *qla2xxx_create_qpair(struct scsi_qla_host *vha, int qos,
return qpair;
fail_bufpool:
- mempool_destroy(qpair->srb_mempool);
fail_mempool:
- qla25xx_delete_req_que(vha, qpair->req);
fail_req:
+ qpair->delete_in_progress = 1;
+ if (qpair->srb_mempool) {
+ mempool_destroy(qpair->srb_mempool);
+ qpair->srb_mempool = NULL;
+ }
+ if (qpair->hw->wq)
+ cancel_work_sync(&qpair->q_work);
+ qla25xx_delete_req_que(vha, qpair->req);
qla25xx_delete_rsp_que(vha, qpair->rsp);
fail_rsp:
mutex_lock(&ha->mq_lock);
@@ -10028,6 +10034,8 @@ int qla2xxx_delete_qpair(struct scsi_qla_host *vha, struct qla_qpair *qpair)
struct qla_hw_data *ha = qpair->hw;
qpair->delete_in_progress = 1;
+ if (qpair->hw->wq)
+ cancel_work_sync(&qpair->q_work);
qla_free_buf_pool(qpair);
--
2.43.0
next reply other threads:[~2026-08-02 23:00 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-02 23:00 Yuho Choi [this message]
2026-08-02 23:16 ` [PATCH v1] scsi: qla2xxx: Cancel qpair work before freeing queues sashiko-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260802230039.586918-1-dbgh9129@gmail.com \
--to=dbgh9129@gmail.com \
--cc=GR-QLogic-Storage-Upstream@marvell.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=njavali@marvell.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.