summaryrefslogtreecommitdiff
path: root/drivers/scsi/fdomain.c
diff options
context:
space:
mode:
authorHannes Reinecke <hare@suse.de>2021-04-27 11:30:42 +0300
committerMartin K. Petersen <martin.petersen@oracle.com>2021-06-01 05:48:24 +0300
commit0ee44f900e419efe00a72880256ef9c71cf60225 (patch)
treea67e037da2d8862bfae26563953792fd05d37378 /drivers/scsi/fdomain.c
parentb2e88c97c59186584ae6111246aee215ed6ec666 (diff)
downloadlinux-0ee44f900e419efe00a72880256ef9c71cf60225.tar.xz
scsi: fdomain: Translate message to host byte status
Instead of setting the message byte translate it to the appropriate host byte. As error recovery would return DID_ERROR for any non-zero message byte the translation doesn't change the error handling. Link: https://lore.kernel.org/r/20210427083046.31620-37-hare@suse.de Signed-off-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/fdomain.c')
-rw-r--r--drivers/scsi/fdomain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fdomain.c b/drivers/scsi/fdomain.c
index 294dbfa5c761..eda2be534aa7 100644
--- a/drivers/scsi/fdomain.c
+++ b/drivers/scsi/fdomain.c
@@ -361,8 +361,8 @@ static void fdomain_work(struct work_struct *work)
if (done) {
set_status_byte(cmd, cmd->SCp.Status);
- set_msg_byte(cmd, cmd->SCp.Message);
set_host_byte(cmd, DID_OK);
+ scsi_msg_to_host_byte(cmd, cmd->SCp.Message);
fdomain_finish_cmd(fd);
} else {
if (cmd->SCp.phase & disconnect) {