diff options
author | Christof Schmitt <christof.schmitt@de.ibm.com> | 2008-04-18 12:51:57 +0200 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-04-18 11:50:41 -0500 |
commit | 57b7658aed76f1763416878ead9be4ffa288b7a3 (patch) | |
tree | db71d536ac49b2bd63e43d1fc840f33e909fac7e /drivers/s390/scsi | |
parent | 6071d7ec36054e78f02f7d5a66c3784aeb65ce92 (diff) | |
download | linux-3.10-57b7658aed76f1763416878ead9be4ffa288b7a3.tar.gz linux-3.10-57b7658aed76f1763416878ead9be4ffa288b7a3.tar.bz2 linux-3.10-57b7658aed76f1763416878ead9be4ffa288b7a3.zip |
[SCSI] zfcp: Fix error handling for blocked unit for send FCP command
In the case the unit is blocked, zfcp_unit_get has not been called
yet, so the error handling path should not call zfcp_unit_put.
Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com>
Signed-off-by: Martin Peschke <mp3@de.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/s390/scsi')
-rw-r--r-- | drivers/s390/scsi/zfcp_fsf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/scsi/zfcp_fsf.c b/drivers/s390/scsi/zfcp_fsf.c index 3211dcc5954..7c3f02816e9 100644 --- a/drivers/s390/scsi/zfcp_fsf.c +++ b/drivers/s390/scsi/zfcp_fsf.c @@ -3562,8 +3562,8 @@ zfcp_fsf_send_fcp_command_task(struct zfcp_adapter *adapter, send_failed: no_fit: failed_scsi_cmnd: - unit_blocked: zfcp_unit_put(unit); + unit_blocked: zfcp_fsf_req_free(fsf_req); fsf_req = NULL; scsi_cmnd->host_scribble = NULL; |