diff options
author | Javed Hasan <[email protected]> | 2021-05-18 23:14:16 -0700 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2021-05-21 22:25:39 -0400 |
commit | 122c81c563b0c1c6b15ff76a9159af5ee1f21563 (patch) | |
tree | a7d4965e4fab56aad4b9c2a32514c4d53239ad24 | |
parent | b4de11dfb569043be2cb38b2b1031e64f8ee0ff6 (diff) |
scsi: bnx2fc: Return failure if io_req is already in ABTS processing
Return failure from bnx2fc_eh_abort() if io_req is already in ABTS
processing.
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Himanshu Madhani <[email protected]>
Signed-off-by: Javed Hasan <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/bnx2fc/bnx2fc_io.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/bnx2fc/bnx2fc_io.c b/drivers/scsi/bnx2fc/bnx2fc_io.c index 1a0dc18d6915..ed300a279a38 100644 --- a/drivers/scsi/bnx2fc/bnx2fc_io.c +++ b/drivers/scsi/bnx2fc/bnx2fc_io.c @@ -1220,6 +1220,7 @@ int bnx2fc_eh_abort(struct scsi_cmnd *sc_cmd) was a result from the ABTS request rather than the CLEANUP request */ set_bit(BNX2FC_FLAG_IO_CLEANUP, &io_req->req_flags); + rc = FAILED; goto done; } |