scsi: qedi: Fix failed disconnect handling
[ Upstream commit 857b06527f707f5df634b854898a191b5c1d0272 ] We set the qedi_ep state to EP_STATE_OFLDCONN_START when the ep is created. Then in qedi_set_path we kick off the offload work. If userspace times out the connection and calls ep_disconnect, qedi will only flush the offload work if the qedi_ep state has transitioned away from EP_STATE_OFLDCONN_START. If we can't connect we will not have transitioned state and will leave the offload work running, and we will free the qedi_ep from under it. This patch just has us init the work when we create the ep, then always flush it. Link: https://lore.kernel.org/r/20220408001314.5014-10-michael.christie@oracle.com Tested-by: Manish Rangankar <mrangankar@marvell.com> Reviewed-by: Lee Duncan <lduncan@suse.com> Reviewed-by: Chris Leech <cleech@redhat.com> Acked-by: Manish Rangankar <mrangankar@marvell.com> Signed-off-by: Mike Christie <michael.christie@oracle.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
a284cca3d8
commit
bf28bba304
@@ -828,6 +828,37 @@ static int qedi_task_xmit(struct iscsi_task *task)
|
|||||||
return qedi_iscsi_send_ioreq(task);
|
return qedi_iscsi_send_ioreq(task);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void qedi_offload_work(struct work_struct *work)
|
||||||
|
{
|
||||||
|
struct qedi_endpoint *qedi_ep =
|
||||||
|
container_of(work, struct qedi_endpoint, offload_work);
|
||||||
|
struct qedi_ctx *qedi;
|
||||||
|
int wait_delay = 5 * HZ;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
qedi = qedi_ep->qedi;
|
||||||
|
|
||||||
|
ret = qedi_iscsi_offload_conn(qedi_ep);
|
||||||
|
if (ret) {
|
||||||
|
QEDI_ERR(&qedi->dbg_ctx,
|
||||||
|
"offload error: iscsi_cid=%u, qedi_ep=%p, ret=%d\n",
|
||||||
|
qedi_ep->iscsi_cid, qedi_ep, ret);
|
||||||
|
qedi_ep->state = EP_STATE_OFLDCONN_FAILED;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = wait_event_interruptible_timeout(qedi_ep->tcp_ofld_wait,
|
||||||
|
(qedi_ep->state ==
|
||||||
|
EP_STATE_OFLDCONN_COMPL),
|
||||||
|
wait_delay);
|
||||||
|
if (ret <= 0 || qedi_ep->state != EP_STATE_OFLDCONN_COMPL) {
|
||||||
|
qedi_ep->state = EP_STATE_OFLDCONN_FAILED;
|
||||||
|
QEDI_ERR(&qedi->dbg_ctx,
|
||||||
|
"Offload conn TIMEOUT iscsi_cid=%u, qedi_ep=%p\n",
|
||||||
|
qedi_ep->iscsi_cid, qedi_ep);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static struct iscsi_endpoint *
|
static struct iscsi_endpoint *
|
||||||
qedi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
|
qedi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
|
||||||
int non_blocking)
|
int non_blocking)
|
||||||
@@ -876,6 +907,7 @@ qedi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
|
|||||||
}
|
}
|
||||||
qedi_ep = ep->dd_data;
|
qedi_ep = ep->dd_data;
|
||||||
memset(qedi_ep, 0, sizeof(struct qedi_endpoint));
|
memset(qedi_ep, 0, sizeof(struct qedi_endpoint));
|
||||||
|
INIT_WORK(&qedi_ep->offload_work, qedi_offload_work);
|
||||||
qedi_ep->state = EP_STATE_IDLE;
|
qedi_ep->state = EP_STATE_IDLE;
|
||||||
qedi_ep->iscsi_cid = (u32)-1;
|
qedi_ep->iscsi_cid = (u32)-1;
|
||||||
qedi_ep->qedi = qedi;
|
qedi_ep->qedi = qedi;
|
||||||
@@ -1026,12 +1058,11 @@ static void qedi_ep_disconnect(struct iscsi_endpoint *ep)
|
|||||||
qedi_ep = ep->dd_data;
|
qedi_ep = ep->dd_data;
|
||||||
qedi = qedi_ep->qedi;
|
qedi = qedi_ep->qedi;
|
||||||
|
|
||||||
|
flush_work(&qedi_ep->offload_work);
|
||||||
|
|
||||||
if (qedi_ep->state == EP_STATE_OFLDCONN_START)
|
if (qedi_ep->state == EP_STATE_OFLDCONN_START)
|
||||||
goto ep_exit_recover;
|
goto ep_exit_recover;
|
||||||
|
|
||||||
if (qedi_ep->state != EP_STATE_OFLDCONN_NONE)
|
|
||||||
flush_work(&qedi_ep->offload_work);
|
|
||||||
|
|
||||||
if (qedi_ep->conn) {
|
if (qedi_ep->conn) {
|
||||||
qedi_conn = qedi_ep->conn;
|
qedi_conn = qedi_ep->conn;
|
||||||
conn = qedi_conn->cls_conn->dd_data;
|
conn = qedi_conn->cls_conn->dd_data;
|
||||||
@@ -1196,37 +1227,6 @@ static int qedi_data_avail(struct qedi_ctx *qedi, u16 vlanid)
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void qedi_offload_work(struct work_struct *work)
|
|
||||||
{
|
|
||||||
struct qedi_endpoint *qedi_ep =
|
|
||||||
container_of(work, struct qedi_endpoint, offload_work);
|
|
||||||
struct qedi_ctx *qedi;
|
|
||||||
int wait_delay = 5 * HZ;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
qedi = qedi_ep->qedi;
|
|
||||||
|
|
||||||
ret = qedi_iscsi_offload_conn(qedi_ep);
|
|
||||||
if (ret) {
|
|
||||||
QEDI_ERR(&qedi->dbg_ctx,
|
|
||||||
"offload error: iscsi_cid=%u, qedi_ep=%p, ret=%d\n",
|
|
||||||
qedi_ep->iscsi_cid, qedi_ep, ret);
|
|
||||||
qedi_ep->state = EP_STATE_OFLDCONN_FAILED;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = wait_event_interruptible_timeout(qedi_ep->tcp_ofld_wait,
|
|
||||||
(qedi_ep->state ==
|
|
||||||
EP_STATE_OFLDCONN_COMPL),
|
|
||||||
wait_delay);
|
|
||||||
if ((ret <= 0) || (qedi_ep->state != EP_STATE_OFLDCONN_COMPL)) {
|
|
||||||
qedi_ep->state = EP_STATE_OFLDCONN_FAILED;
|
|
||||||
QEDI_ERR(&qedi->dbg_ctx,
|
|
||||||
"Offload conn TIMEOUT iscsi_cid=%u, qedi_ep=%p\n",
|
|
||||||
qedi_ep->iscsi_cid, qedi_ep);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static int qedi_set_path(struct Scsi_Host *shost, struct iscsi_path *path_data)
|
static int qedi_set_path(struct Scsi_Host *shost, struct iscsi_path *path_data)
|
||||||
{
|
{
|
||||||
struct qedi_ctx *qedi;
|
struct qedi_ctx *qedi;
|
||||||
@@ -1342,7 +1342,6 @@ static int qedi_set_path(struct Scsi_Host *shost, struct iscsi_path *path_data)
|
|||||||
qedi_ep->dst_addr, qedi_ep->dst_port);
|
qedi_ep->dst_addr, qedi_ep->dst_port);
|
||||||
}
|
}
|
||||||
|
|
||||||
INIT_WORK(&qedi_ep->offload_work, qedi_offload_work);
|
|
||||||
queue_work(qedi->offload_thread, &qedi_ep->offload_work);
|
queue_work(qedi->offload_thread, &qedi_ep->offload_work);
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
|
Reference in New Issue
Block a user