* [PATCH] bnx2fc: Fix check in SCSI completion handler when reqeust has already timed out.
@ 2018-01-24 16:07 Chad Dupuis
2018-01-24 16:12 ` Laurence Oberman
2018-01-31 2:26 ` Martin K. Petersen
0 siblings, 2 replies; 3+ messages in thread
From: Chad Dupuis @ 2018-01-24 16:07 UTC (permalink / raw)
To: martin.petersen; +Cc: linux-scsi, james.bottomley, QLogic-Storage-Upstream
When a request times out we set the io_req flag BNX2FC_FLAG_IO_COMPL so
that if a subsequent completion comes in on that task ID we will ignore
it. The issue is that in the check for this flag there is a missing
return so we will continue to process a request which may have already
been returned to the ownership of the SCSI layer. This can cause
unpredictable results.
Solution is to add in the missing return.
Signed-off-by: Chad Dupuis <chad.dupuis@cavium.com>
---
drivers/scsi/bnx2fc/bnx2fc_io.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/scsi/bnx2fc/bnx2fc_io.c b/drivers/scsi/bnx2fc/bnx2fc_io.c
index 8e2f767147cb..5a645b8b9af1 100644
--- a/drivers/scsi/bnx2fc/bnx2fc_io.c
+++ b/drivers/scsi/bnx2fc/bnx2fc_io.c
@@ -1889,6 +1889,7 @@ void bnx2fc_process_scsi_cmd_compl(struct bnx2fc_cmd *io_req,
/* we will not receive ABTS response for this IO */
BNX2FC_IO_DBG(io_req, "Timer context finished processing "
"this scsi cmd\n");
+ return;
}
/* Cancel the timeout_work, as we received IO completion */
--
2.12.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] bnx2fc: Fix check in SCSI completion handler when reqeust has already timed out.
2018-01-24 16:07 [PATCH] bnx2fc: Fix check in SCSI completion handler when reqeust has already timed out Chad Dupuis
@ 2018-01-24 16:12 ` Laurence Oberman
2018-01-31 2:26 ` Martin K. Petersen
1 sibling, 0 replies; 3+ messages in thread
From: Laurence Oberman @ 2018-01-24 16:12 UTC (permalink / raw)
To: Chad Dupuis, martin.petersen
Cc: linux-scsi, james.bottomley, QLogic-Storage-Upstream
On Wed, 2018-01-24 at 08:07 -0800, Chad Dupuis wrote:
> When a request times out we set the io_req flag BNX2FC_FLAG_IO_COMPL
> so
> that if a subsequent completion comes in on that task ID we will
> ignore
> it. The issue is that in the check for this flag there is a missing
> return so we will continue to process a request which may have
> already
> been returned to the ownership of the SCSI layer. This can cause
> unpredictable results.
>
> Solution is to add in the missing return.
>
> Signed-off-by: Chad Dupuis <chad.dupuis@cavium.com>
> ---
> drivers/scsi/bnx2fc/bnx2fc_io.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/scsi/bnx2fc/bnx2fc_io.c
> b/drivers/scsi/bnx2fc/bnx2fc_io.c
> index 8e2f767147cb..5a645b8b9af1 100644
> --- a/drivers/scsi/bnx2fc/bnx2fc_io.c
> +++ b/drivers/scsi/bnx2fc/bnx2fc_io.c
> @@ -1889,6 +1889,7 @@ void bnx2fc_process_scsi_cmd_compl(struct
> bnx2fc_cmd *io_req,
> /* we will not receive ABTS response for this IO */
> BNX2FC_IO_DBG(io_req, "Timer context finished
> processing "
> "this scsi cmd\n");
> + return;
> }
>
> /* Cancel the timeout_work, as we received IO completion */
Hello
This was added after the race showed up for the first issue we fixed.
Its been running stable in our lab and at the customer.
Reviewed-by: Laurence Oberman <loberman@redhat.com>
Tested-by: Laurence Oberman <loberman@redhat.com>
Thanks
Laurence
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] bnx2fc: Fix check in SCSI completion handler when reqeust has already timed out.
2018-01-24 16:07 [PATCH] bnx2fc: Fix check in SCSI completion handler when reqeust has already timed out Chad Dupuis
2018-01-24 16:12 ` Laurence Oberman
@ 2018-01-31 2:26 ` Martin K. Petersen
1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2018-01-31 2:26 UTC (permalink / raw)
To: Chad Dupuis
Cc: martin.petersen, linux-scsi, james.bottomley,
QLogic-Storage-Upstream
Chad,
> When a request times out we set the io_req flag BNX2FC_FLAG_IO_COMPL so
> that if a subsequent completion comes in on that task ID we will ignore
> it. The issue is that in the check for this flag there is a missing
> return so we will continue to process a request which may have already
> been returned to the ownership of the SCSI layer. This can cause
> unpredictable results.
Applied to 4.16/scsi-fixes. Thanks!
--
Martin K. Petersen Oracle Linux Engineering
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-01-31 2:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-24 16:07 [PATCH] bnx2fc: Fix check in SCSI completion handler when reqeust has already timed out Chad Dupuis
2018-01-24 16:12 ` Laurence Oberman
2018-01-31 2:26 ` Martin K. Petersen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox