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>
This commit is contained in:
Hannes Reinecke 2021-04-27 10:30:42 +02:00 committed by Martin K. Petersen
parent b2e88c97c5
commit 0ee44f900e
1 changed files with 1 additions and 1 deletions

View File

@ -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) {