Commit 0ee44f90 authored by Hannes Reinecke's avatar Hannes Reinecke Committed by Martin K. Petersen
Browse files

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: default avatarHannes Reinecke <hare@suse.de>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent b2e88c97
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {