mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[SCSI] bfa: set correct command return code
For various error conditions the bfa driver just returns 'DID_ERROR', which carries no information at all about the actual source of error. This patch updates the error handling to return a correct error code, depending on the type of error occurred. Signed-off-by: Hannes Reinecke <hare@suse.de> Acked-by: Vijaya Mohan Guvva <vmohan@brocade.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
10ca149c4a
commit
c60b7b121d
1 changed files with 6 additions and 1 deletions
|
@ -73,9 +73,14 @@ bfa_cb_ioim_done(void *drv, struct bfad_ioim_s *dio,
|
|||
|
||||
break;
|
||||
|
||||
case BFI_IOIM_STS_ABORTED:
|
||||
case BFI_IOIM_STS_TIMEDOUT:
|
||||
host_status = DID_TIME_OUT;
|
||||
cmnd->result = ScsiResult(host_status, 0);
|
||||
break;
|
||||
case BFI_IOIM_STS_PATHTOV:
|
||||
host_status = DID_TRANSPORT_DISRUPTED;
|
||||
cmnd->result = ScsiResult(host_status, 0);
|
||||
break;
|
||||
default:
|
||||
host_status = DID_ERROR;
|
||||
cmnd->result = ScsiResult(host_status, 0);
|
||||
|
|
Loading…
Reference in a new issue